-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "mvt-imagery-provider",
"version": "0.7.0",
"packageManager": "[email protected]",
"description": "A Mapbox style renderer for CesiumJS",
"source": "src/utils/MVTImageryProvider/index.ts",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"exports": "./lib/index.modern.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack --mode=production",
"build:lib": "microbundle --tsconfig=tsconfig.microbundle.json",
"start": "webpack-dev-server --mode=development",
"prepublish": "npm run build:lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/hongfaqiu/MVTImageryProvider.git"
},
"keywords": [
"Mapbox Style",
"Vector Tile",
"Cesium"
],
"license": "MIT",
"peerDependencies": {
"cesium": "*"
},
"dependencies": {
"mvt-basic-render": "^0.2.2"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.40",
"@types/webpack": "^5.28.0",
"babel-loader": "^8.2.5",
"cesium": "^1.94.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^9.2.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"microbundle": "^0.14.2",
"semantic-release": "^19.0.3",
"style-loader": "^3.3.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
},
"files": [
"lib",
"README.md"
]
}