-
-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.21 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
48
49
{
"name": "3d.city",
"version": "1.0.0",
"description": "JavaScript city builder game",
"main": "./build/Main.js",
"repository": "lo-th/3d.city",
"type": "module",
"jsnext:main": "./build/citygame.module.js",
"module": "build/citygame.module.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"build/citygame.js",
"build/citygame.min.js",
"build/citygame.module.js"
],
"directories": {
"doc": "docs",
"example": "examples"
},
"eslintConfig": {
"extends": "mdcs"
},
"scripts": {
"build": "npm run main && npm run city",
"main": "rollup -c utils/rollup.config.main.js",
"city": "rollup -c utils/rollup.config.city.js",
"dev": "http-server ./ -c-1 -a localhost -p 8666 -o dev.html",
"start": "http-server ./ -c-1 -a localhost -p 8686 -o ./index.html"
},
"keywords": [
"3d.city",
"city",
"builder"
],
"author": "lo-th",
"license": "MIT",
"bugs": {
"url": "https://github.com/lo-th/3d.city/issues"
},
"homepage": "https://lo-th.github.io/3d.city/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"magic-string": "^0.30.0",
"rollup": "^4.6.0"
}
}