-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 846 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "canny-canvas",
"version": "0.0.3",
"description": "A 2D canvas renderer.",
"main": "dist/index.dist.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/SouthpawGoblin/canny-canvas.git",
"author": "Roger Chi <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "cross-env TARGET=dev webpack --watch",
"dist": "cross-env TARGET=dist webpack",
"docs": "cross-env TARGET=docs webpack"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"keywords": [
"2D",
"canvas",
"renderer",
"engine"
]
}