-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
30 lines (30 loc) · 970 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
{
"name": "crisp-game-lib",
"version": "1.2.0",
"description": "Minimal JavaScript library for creating classic arcade-like mini-games running in the browser",
"author": "abagames",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abagames/crisp-game-lib.git"
},
"homepage": "https://github.com/abagames/crisp-game-lib",
"main": "docs/bundle.js",
"typings": "docs/bundle.d.ts",
"scripts": {
"watch_games": "light-server -s docs -w \"docs/**/* # # reload\"",
"watch_lib": "rollup -c -w --bundleConfigAsCjs",
"generate_reference": "typedoc src/main.ts --out ./docs/ref_document/"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^10.0.1",
"@types/pixi.js": "^5.0.0",
"light-server": "^2.9.1",
"rollup": "^3.8.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
}
}