-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 847 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 847 Bytes
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
{
"name": "crisp-game-lib",
"version": "1.0.1",
"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"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/pixi.js": "^5.0.0",
"light-server": "^2.9.1",
"rollup": "^2.69.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
}
}