-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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": "@macrostrat/cesium-martini",
"version": "1.3.0",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"example": "yarn workspace example-vite run dev",
"example:webpack-react": "yarn workspace example-webpack-react run dev",
"example:webpack": "yarn workspace example-webpack run dev",
"dev": "yarn run watch & yarn run example",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/martini": "^0.2.0",
"@types/ndarray": "^1.0.7",
"axios": "^0.21.1",
"cesium": "^1.81.0",
"get-pixels": "^3.3.2",
"ndarray": "^1.0.19"
},
"workspaces": [
"examples/*"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@macrostrat/hyper": "^1.2.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"rollup": "^2.39.0",
"rollup-plugin-web-worker-loader": "^1.5.0",
"typescript": "^5.0.0"
}
}