-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "@dvgis/maplibre-three-plugin",
"version": "1.0.1",
"main": "dist/index.js",
"repository": "https://github.com/dvgis/maplibre-three-plugin.git",
"author": "cavencj <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "rimraf dist && gulp dev",
"build": "rimraf dist && gulp build",
"build:node": "rimraf dist && gulp buildNode",
"build:iife": "rimraf dist && gulp buildIIFE",
"build:release": "rimraf dist && gulp buildRelease",
"prepublishOnly": "yarn run build:release",
"lint": "eslint --fix src"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"chalk": "^5.2.0",
"esbuild": "^0.20.2",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-sass-plugin": "^3.1.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"portfinder": "^1.0.32",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"shelljs": "^0.8.5"
},
"peerDependencies": {
"three": "^0.165.0"
},
"files": [
"dist"
]
}