-
Notifications
You must be signed in to change notification settings - Fork 593
/
package.json
81 lines (81 loc) · 2.71 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
{
"name": "@mapbox/mapbox-gl-draw",
"version": "1.4.3",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"description": "A drawing component for Mapbox GL JS",
"author": "mapbox",
"license": "ISC",
"homepage": "https://github.com/mapbox/mapbox-gl-draw",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mapbox-gl-draw.git"
},
"bugs": {
"url": "https://github.com/mapbox/mapbox-gl-draw/issues"
},
"keywords": [
"webgl",
"mapbox",
"draw",
"drawing"
],
"type": "module",
"exports": "./index.js",
"main": "dist/mapbox-gl-draw.js",
"browser": "dist/mapbox-gl-draw.js",
"style": "dist/mapbox-gl-draw.css",
"scripts": {
"docs": "run-s docs-modes-life-cycle docs-modes-get-and-set",
"docs-modes-get-and-set": "documentation readme --readme-file ./docs/MODES.md -s \"Setters and Getters\" src/modes/mode_interface_accessors.js --shallow",
"docs-modes-life-cycle": "documentation readme --readme-file ./docs/MODES.md -s \"Life Cycle Functions\" src/modes/mode_interface.js --shallow",
"lint": "eslint index.js src test bench",
"pretest": "npm run lint",
"test": "node --test --import ./test/mock-browser.js",
"coverage": "node --test --import ./test/mock-browser.js --experimental-test-coverage",
"build-token": "node build/generate-access-token-script.js",
"build": "rollup -c",
"build-min": "rollup -c --environment MINIFY:true",
"prepublishOnly": "run-s build build-min",
"watch": "rollup -c --watch",
"watch-bench": "rollup -c bench/rollup.config.js --watch",
"start-server": "vite --config vite.config.js",
"start-bench": "run-p build-token watch watch-bench \"start-server --base . .\"",
"start": "run-p build-token start-server"
},
"devDependencies": {
"@mapbox/cloudfriend": "^8.1.0",
"@mapbox/mapbox-gl-draw-static-mode": "^1.0.1",
"@mapbox/mapbox-gl-geocoder": "^5.0.2",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@turf/bbox-clip": "^7.0.0",
"@turf/centroid": "^7.0.0",
"eslint": "8.57.1",
"eslint-config-mourner": "3.0.0",
"eslint-plugin-import": "^2.28.1",
"mapbox-gl": "^3.4.0",
"mock-browser": "^0.92.14",
"npm-run-all": "^4.1.5",
"rollup": "^4.19.1",
"sinon": "^19.0.2",
"synthetic-dom-events": "0.3.0",
"vite": "^5.3.1"
},
"dependencies": {
"@mapbox/geojson-area": "^0.2.2",
"@mapbox/geojson-normalize": "^0.0.1",
"@mapbox/point-geometry": "^0.1.0",
"fast-deep-equal": "^3.1.3",
"hat": "0.0.3"
},
"files": [
"src",
"index.js",
"dist/mapbox-gl-draw*"
]
}