-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "@xort/cga",
"version": "0.0.94",
"description": "Xtor Compute Geometry Algorithm Libary 计算几何算法库",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pxy": "hpts -s 127.0.0.1:5006 -p 8002",
"release": "tsc && npm publish && git.sh",
"dev": "webpack-dev-server",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"build": "tsc && rollup -c",
"rollup": "rollup -c",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "tsc && deploy.sh"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/yszhao91/cga.js"
},
"author": "Zhao YS",
"keywords": [
"cga",
"cgajs",
"cga.js",
"计算几何库",
"webgl",
"threejs",
"compute geometry algorithm",
"MIT",
"开源",
"gis"
],
"license": "MIT",
"dependencies": {
"decimal.js": "^10.3.1",
"earcut": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@types/earcut": "^2.1.1",
"@types/uuid": "^7.0.3",
"bignumber.js": "^9.0.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^2.6.12",
"css-loader": "^3.5.3",
"element-ui": "^2.15.8",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-uglify": "^6.0.4",
"rollup-watch": "^4.3.1",
"style-loader": "^1.2.1",
"three": "^0.125.2",
"ts-loader": "^7.0.4",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "^4.9.4",
"vuepress": "^1.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}