-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "chaos-studio",
"version": "0.8.1",
"description": "a 2D game engine",
"homepage": "https://waynemwashuma.github.io/chaos-engine/",
"bugs": {
"url": "https://github.com/waynemwashuma/chaos-engine/issues"
},
"type": "module",
"license": "MIT",
"main": "./dist/chaos.umd.js",
"types": "./dist/chaos.module.d.ts",
"exports": {
".": {
"import": "./dist/chaos.module.js",
"require": "./dist/chaos.umd.js"
}
},
"author": "Wayne Mwashuma",
"repository": {
"type": "git",
"url": "https://github.com/waynemwashuma/chaos-engine.git"
},
"scripts": {
"changelog": "node scripts/changelog.js",
"types": "tsc -p configs/tsconfig.json",
"test": "echo test done",
"rollup": "rollup --config configs/rollup.config.js --failAfterWarnings",
"docs": "jsdoc -c configs/jsdoc.json",
"dev": "npm run build:alfa",
"typedef": "node scripts/typedef.js",
"build": "npm run build:full",
"build:alfa": "npm run rollup & npm run typedef & npm run types",
"build:full": "npm run test & npm run build:alfa",
"build:prod": "npm run build:full & npm run docs & npm run changelog"
},
"keywords": [
"game",
"engine",
"game engine",
"2D"
],
"devDependencies": {
"jsdoc": "^4.0.2",
"rollup": "^4.12.0",
"typescript": "latest"
},
"files": [
"dist/*"
]
}