-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "arrow-wasm",
"collaborators": [
"Dominik Moritz <[email protected]>"
],
"description": "Apache Arrow in WebAssembly",
"version": "0.0.20",
"license": "MIT/Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/domoritz/arrow-wasm"
},
"files": [
"dist"
],
"main": "dist/arrow.js",
"scripts": {
"prebuild": "yarn clean",
"build": "rollup --config",
"watch": "rollup --config --watch",
"build:web": "wasm-pack build --target web",
"build:node": "wasm-pack build --target nodejs",
"clean": "rimraf dist pkg",
"prepublishOnly": "yarn build",
"preserve": "yarn build:web",
"serve": "light-server -s .",
"perf": "wasm-pack build --target nodejs && node perf.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.3",
"@wasm-tool/rollup-plugin-rust": "^1.0.7",
"apache-arrow": "^4.0.1",
"benny": "^3.6.15",
"light-server": "^2.9.1",
"rimraf": "^3.0.2",
"rollup": "^2.53.3",
"typescript": "^4.3.5"
},
"sideEffects": false
}