-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "@uwdata/flechette",
"version": "1.1.1",
"description": "Fast, lightweight access to Apache Arrow data.",
"keywords": [
"arrow",
"data",
"access"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (https://idl.uw.edu)",
"type": "module",
"main": "./dist/flechette.cjs",
"module": "./src/index.js",
"jsdelivr": "./dist/flechette.min.js",
"unpkg": "./dist/flechette.min.js",
"types": "./dist/types/index-types.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/uwdata/flechette.git"
},
"scripts": {
"perf": "node perf/run-all.js",
"perf:build": "node perf/build-perf.js",
"perf:decode": "node perf/decode-perf.js",
"perf:encode": "node perf/encode-perf.js",
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c rollup.config.js",
"types": "tsc --project tsconfig.json",
"postbuild": "npm run types",
"lint": "eslint src test",
"test": "mocha 'test/**/*-test.js'",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@uwdata/mosaic-duckdb": "^0.12.0",
"apache-arrow": "^18.0.0",
"eslint": "^9.15.0",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"rollup": "^4.27.3",
"rollup-plugin-bundle-size": "^1.0.3",
"typescript": "^5.6.3"
}
}