-
-
Notifications
You must be signed in to change notification settings - Fork 253
/
package.json
88 lines (88 loc) · 2.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mini-tokyo-3d",
"version": "3.5.0",
"description": "A real-time 3D digital map of Tokyo's public transport system",
"main": "dist/mini-tokyo-3d.js",
"module": "dist/mini-tokyo-3d.esm.js",
"style": "dist/mini-tokyo-3d.css",
"dependencies": {
"@deck.gl/core": "^8.9.36",
"@deck.gl/geo-layers": "^8.9.36",
"@deck.gl/layers": "^8.9.36",
"@deck.gl/mapbox": "^8.9.36",
"@fortawesome/fontawesome-free": "^6.6.0",
"@turf/along": "^5.1.5",
"@turf/bearing": "^5.1.5",
"@turf/buffer": "^5.1.5",
"@turf/center-of-mass": "^5.1.5",
"@turf/clean-coords": "^5.1.5",
"@turf/destination": "^5.1.5",
"@turf/distance": "^5.1.5",
"@turf/helpers": "^5.1.5",
"@turf/invariant": "^5.1.5",
"@turf/length": "^5.1.5",
"@turf/line-slice": "^5.1.5",
"@turf/meta": "^5.1.5",
"@turf/nearest-point-on-line": "^5.1.5",
"@turf/polygon-to-line": "^5.1.5",
"@turf/truncate": "^5.1.5",
"@turf/union": "^5.1.5",
"csscolorparser": "^1.0.3",
"fflate": "^0.8.2",
"japanese-holidays": "^1.0.10",
"loaders.css": "^0.1.2",
"mapbox-gl": "^2.15.0",
"mapbox-gl-animated-popup": "^0.4.0",
"suncalc": "^1.9.0",
"swiper": "^11.1.14",
"three": "^0.169.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.1",
"eslint-config-mourner": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.3.1",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-inline-svg": "^6.0.0",
"rollup": "^4.24.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"vuepress": "^1.9.10",
"vuepress-plugin-flexsearch": "^0.3.0"
},
"scripts": {
"build": "rollup -c",
"build-pages": "rm -rf build; cp -r public build; cp .npmignore dist/mini-tokyo-3d.min.css dist/mini-tokyo-3d.min.js dist/mini-tokyo-3d.min.js.map build",
"build-data": "rm -rf build/data; mkdir -p build/data; cp data/dictionary-*.json data/osm-liberty.json build/data; node dist/loader",
"build-all": "run-s build build-pages build-data docs",
"docs": "vuepress build docs --no-cache",
"docs:dev": "vuepress dev docs --no-cache",
"lint": "eslint --cache --ignore-path .gitignore src"
},
"files": [
"build/",
"dist/mini-tokyo-3d.*",
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nagix/mini-tokyo-3d.git"
},
"author": "Akihiko Kusanagi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nagix/mini-tokyo-3d/issues"
},
"homepage": "https://minitokyo3d.com",
"jsdelivr": "dist/mini-tokyo-3d.min.js",
"unpkg": "dist/mini-tokyo-3d.min.js"
}