Files
rough/package.json
Preet Shihn 497f032889 new renderer
2020-03-25 19:56:39 -07:00

40 lines
1004 B
JSON

{
"name": "roughjs",
"version": "4.0.4",
"description": "Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance.",
"main": "bundled/rough.cjs.js",
"module": "bin/rough.js",
"types": "bin/rough.d.ts",
"browser": "bundled/rough.js",
"scripts": {
"build": "rm -rf bin && tsc && rollup -c",
"lint": "tslint -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/rough.git"
},
"keywords": [
"canvas",
"svg",
"graphics",
"sketchy",
"hand drawn",
"hand-drawn"
],
"author": "Preet Shihn <preetshihn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/rough/issues"
},
"homepage": "https://roughjs.com",
"devDependencies": {
"@rollup/plugin-typescript": "^2.1.0",
"rollup": "^1.32.1",
"rollup-plugin-terser": "^5.3.0",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
}
}