-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "maptalks.three",
"version": "0.39.0",
"description": "A maptalks Layer to render with THREE.js.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maptalks/maptalks.three.js.git"
},
"files": [
"dist/",
"src/"
],
"main": "dist/maptalks.three.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"scripts": {
"tsc": "npx tsc",
"dev": "rollup --environment BUILD:dev -w -c rollup.config.js",
"build": "npm run tsc && rollup --environment BUILD:production -c rollup.config.js",
"build-dev": "rollup -c rollup.config.js",
"preversion": "npm run lint",
"version": "npm run build && git add -A dist",
"lint": "eslint index.js src/**/*.js test/**/*.js",
"prepublish": "npm run lint && npm run build"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/three": "^0.125.1",
"babel-eslint": "^9.0.0",
"chalk": "^4.1.0",
"eslint": "^4.19.1",
"eslint-config-maptalks": "^0.3.0",
"eslint-plugin-mocha": "^5.0.0",
"rollup": "^2.64.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.151.0",
"tslib": "^2.1.0",
"typescript": "^4.5.4"
},
"dependencies": {
"deyihu-geometry-extrude": "0.1.10",
"poly-extrude": "^0.4.0"
}
}