-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.01 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
75
76
{
"name": "@geoarrow/geoarrow-js",
"version": "0.3.1",
"description": "TypeScript implementation of GeoArrow",
"source": "src/index.ts",
"umd:main": "dist/geoarrow.umd.js",
"unpkg": "dist/geoarrow.umd.js",
"types": "dist/index.d.ts",
"browser": "dist/geoarrow.umd.js",
"jsdelivr": "dist/geoarrow.umd.js",
"module": "dist/geoarrow.es.mjs",
"main": "dist/geoarrow.cjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/geoarrow.cjs",
"default": "./dist/geoarrow.es.mjs"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geoarrow/geoarrow-js.git"
},
"author": "Kyle Barron <kylebarron2@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build:rollup": "rollup -c rollup.config.js",
"build:workers": "node ./worker-build.mjs",
"build": "yarn build:rollup && yarn build:workers",
"clean": "rimraf dist",
"docs:build": "typedoc",
"docs:publish": "gh-pages -d docs_build",
"fmt:check": "prettier './src/**/*.ts' --check",
"fmt": "prettier './src/**/*.ts' --write",
"prepublishOnly": "yarn clean && yarn build",
"test": "vitest run",
"typecheck": "tsc --build",
"watch": "tsc --watch --declaration"
},
"files": [
"dist/",
"src/"
],
"peerDependencies": {
"apache-arrow": ">=15"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^20.9.3",
"@types/proj4": "^2",
"apache-arrow": "^15",
"esbuild": "^0.19.8",
"gh-pages": "^6.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.1.5",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.4",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"volta": {
"node": "20.9.0",
"yarn": "4.0.2"
},
"dependencies": {
"@math.gl/polygon": "^4.0.0",
"proj4": "^2.9.2",
"threads": "^1.7.0"
}
}