-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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": "shapefile-ts",
"version": "1.2.5",
"repository": {
"type": "git",
"url": "https://github.com/guxin0123/shapefile-ts.git"
},
"description": "Browser-side shapefile.js only",
"main": "./lib/index.esm.js",
"module": "./lib/index.esm.js",
"umd": "./lib/shp.umd.js",
"types": "./lib/types/index.d.ts",
"type": "module",
"files": [
"/lib"
],
"scripts": {
"test": "npm run build:es && mocha ./test/test.js -r jsdom-global/register",
"serve": "node test/server.js",
"clean:dist": "rimraf lib dist",
"build:types": "tsc -b ./tsconfig.types.json",
"build:es": "rollup --config rollup/rollup.esm.config.mjs",
"build:umd": "rollup --config rollup/rollup.umd.config.mjs",
"build:ALL": "npm run clean:dist && npm run build:types && npm run build:es &&npm run build:umd ",
"vite-test": "vite"
},
"author": "Gux",
"license": "MIT",
"dependencies": {
"fflate": "^0.8.2",
"proj4": "^2.10.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/proj4": "^2.5.5",
"chai": "^5.1.0",
"chai-promised": "^1.0.2",
"express": "5.0.0",
"jsdom": "24.0.0",
"jsdom-global": "3.0.2",
"mocha": "^10.4.0",
"rimraf": "^5.0.5",
"rollup": "4.22.4",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"vite": "5.4.6"
}
}