-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 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
49
50
51
52
53
54
55
{
"name": "@kwonlabs/openzl-wasm",
"version": "0.2.0",
"type": "module",
"description": "WebAssembly port of Meta's OpenZL (Structured Data Compression Framework)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun run build:wasm && bun run build:ts && bun run prepare:dist",
"build:wasm": "bash scripts/build_wasm.sh",
"build:ts": "bun run scripts/build_ts.ts",
"prepare:dist": "bun run scripts/prepare_dist.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"bench": "bun run benchmarks/run.ts",
"lint": "eslint . && prettier --check .",
"format": "prettier --write ."
},
"keywords": [
"openzl",
"compression",
"wasm",
"webassembly",
"structured-data"
],
"author": "KwonMinchul Computer Labs, LLC.",
"license": "MIT",
"homepage": "https://github.com/kwonlabs/openzl-wasm",
"repository": {
"type": "git",
"url": "git+https://github.com/kwonlabs/openzl-wasm.git"
},
"bugs": {
"url": "https://github.com/kwonlabs/openzl-wasm/issues"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "latest",
"typescript": "latest",
"typescript-eslint": "^8.56.1",
"vitest": "latest"
}
}