-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·60 lines (60 loc) · 1.69 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
{
"name": "mapbox-gl-draw-history",
"version": "1.0.1",
"description": "A history plugin for Mapbox GL Draw",
"main": "dist/mapbox-gl-draw-history.js",
"style": "dist/mapbox-gl-draw-history.css",
"peerDependencies": {
"@mapbox/mapbox-gl-draw": "^1",
"mapbox-gl": "^1 || ^2"
},
"scripts": {
"watch-dev": "rollup -c --environment BUILD:dev --watch",
"build": "rimraf dist && rollup -c --environment BUILD:production,MINIFY:true",
"start-server": "st --no-cache -H 0.0.0.0 --port 3000 --index /index.html .",
"start": "run-p watch-dev start-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Starmordar/mapbox-gl-draw-history.git"
},
"keywords": [
"webgl",
"mapbox",
"draw",
"drawing",
"history",
"undo",
"redo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Starmordar/mapbox-gl-draw-history/issues"
},
"homepage": "https://github.com/Starmordar/mapbox-gl-draw-history#readme",
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/mapbox__mapbox-gl-draw": "^1.4.2",
"@types/mapbox-gl": "^2.7.14",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"rollup": "^3.29.2",
"st": "^3.0.0",
"typescript": "^5.2.2"
},
"files": [
"dist/mapbox-gl-draw-history*",
"src/",
"LICENSE.md"
]
}