forked from yoshihitoh/zstd-codec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "zstd-codec",
"version": "0.2.0",
"description": "Zstandard codec powered by Emscripten",
"type": "module",
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"lib/package.json",
"lib/zstd-codec-binding-wasm.js",
"lib/zstd-codec-binding-wasm.wasm",
"src"
],
"repository": "https://github.com/heylogin/zstd-codec",
"author": "Vincent Breitmoser",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"build-binding": "bash ../update-zstd-binding.sh",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test-watch": "vitest",
"test-coverage": "vitest run --coverage",
"test-debug": "node --inspect-brk node_modules/.bin/vitest --run"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}