-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.52 KB
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
{
"name": "pixels-blazing",
"version": "0.1.0",
"description": "Pixels Blazing is a top-down isometric shooter game.",
"main": "src/index.ts",
"scripts": {
"test": "echo 'Test Commands!'",
"dev": "rollup --config rollup.config.dev.js",
"build": "rollup --config rollup.config.dist.js",
"watch": "rollup --config --watch rollup.config.dev.js",
"ngui_build": "npm run build && qode ./dist/dist.js",
"ngui_debug": "npm run dev && qode --inspect ./dist/dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReMod-Studios-Games/Pixels-Blazing.git"
},
"keywords": [
"2d",
"js",
"ts",
"isometric",
"shooter"
],
"author": "ReMod Studios",
"license": "LGPLv2",
"bugs": {
"url": "https://github.com/ReMod-Studios-Games/Pixels-Blazing/issues"
},
"homepage": "https://github.com/ReMod-Studios-Games/Pixels-Blazing#readme",
"dependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.5",
"babylonjs": "^4.2.0",
"rollup": "^2.56.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0"
}
}