forked from foxglove/wasm-zstd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.22 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
56
57
58
{
"name": "@ioai/wasm-zstd",
"version": "1.1.2",
"description": "Vite-friendly WebAssembly bindings for facebook/zstd",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ioai-tech/wasm-zstd.git"
},
"homepage": "https://github.com/ioai-tech/wasm-zstd#readme",
"bugs": {
"url": "https://github.com/ioai-tech/wasm-zstd/issues"
},
"keywords": [
"zstd",
"zstandard",
"wasm",
"webassembly",
"vite",
"worker",
"browser"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.js"
},
"./wasm-zstd.wasm": "./dist/wasm-zstd.wasm"
},
"files": [
"dist/index.js",
"dist/wasm-zstd.js",
"dist/wasm-zstd.wasm",
"index.d.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "./docker-build.sh",
"build:local": "./build.sh",
"prepack": "npm run build",
"test": "node test/index.js",
"pack:check": "npm pack --dry-run --ignore-scripts"
},
"devDependencies": {
"prettier": "^3.6.2"
},
"prettier": {
"printWidth": 120
}
}