-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "arrow-js-ffi",
"version": "0.4.2",
"description": "Zero-copy reading of Arrow data from WebAssembly",
"source": "src/index.ts",
"umd:main": "dist/arrow-js-ffi.umd.js",
"unpkg": "dist/arrow-js-ffi.umd.js",
"types": "dist/index.d.ts",
"browser": "dist/arrow-js-ffi.umd.js",
"jsdelivr": "dist/arrow-js-ffi.umd.js",
"module": "dist/arrow-js-ffi.es.mjs",
"main": "dist/arrow-js-ffi.cjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/arrow-js-ffi.cjs",
"default": "./dist/arrow-js-ffi.es.mjs"
},
"repository": "https://github.com/kylebarron/arrow-js-ffi",
"author": "Kyle Barron <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.js",
"clean": "rimraf dist",
"fmt:check": "prettier './src/**/*.ts' --check",
"fmt": "prettier './src/**/*.ts' --write",
"test": "vitest run",
"typecheck": "tsc --build",
"prepublishOnly": "yarn clean && yarn build",
"watch": "tsc --watch --declaration"
},
"files": [
"dist/",
"src/"
],
"peerDependencies": {
"apache-arrow": ">=15"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"apache-arrow": "^15",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.1.5",
"rollup-plugin-dts": "^6.1.0",
"rust-arrow-ffi": "link:./tests/rust-arrow-ffi/pkg/",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^1.2.2"
},
"volta": {
"node": "20.9.0",
"yarn": "4.0.2"
}
}