-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "@uwdata/flechette",
"version": "2.3.0",
"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:unit": "vitest",
"test": "vitest --run",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"apache-arrow": "^21.1.0",
"eslint": "^9.39.2",
"lz4js": "0.2.0",
"rimraf": "^6.1.2",
"rollup": "^4.57.0",
"rollup-plugin-bundle-size": "^1.0.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"zstd-codec": "0.1.5"
}
}