-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "brotli-dec-wasm",
"version": "2.3.0",
"description": "Brotli decompressor for browsers and web workers with WASM, which still has a small size (about 200KB)",
"scripts": {
"build": "wasm-pack build -t web",
"test": "test/test.sh test",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ustclug-dev/brotli-dec-wasm.git"
},
"keywords": [
"brotli",
"brotli-decompressor",
"wasm",
"rust"
],
"author": "myl7",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/ustclug-dev/brotli-dec-wasm/issues"
},
"homepage": "https://github.com/ustclug-dev/brotli-dec-wasm#readme",
"files": [
"pkg/brotli_dec_wasm_bg.wasm",
"pkg/brotli_dec_wasm_bg.wasm.d.ts",
"pkg/brotli_dec_wasm.d.ts",
"pkg/brotli_dec_wasm.js",
"*.js",
"*.d.ts",
"LICENSE-*"
],
"type": "module",
"sideEffects": false,
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
},
"./web": {
"types": "./pkg/brotli_dec_wasm.d.ts",
"import": "./pkg/brotli_dec_wasm.js",
"default": "./pkg/brotli_dec_wasm.js"
},
"./web/bg.wasm": {
"types": "./pkg/brotli_dec_wasm_bg.wasm.d.ts",
"import": "./pkg/brotli_dec_wasm_bg.wasm",
"default": "./pkg/brotli_dec_wasm_bg.wasm"
}
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"prettier": "^3.2.5"
}
}