-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.56 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
59
60
61
62
63
64
65
66
{
"name": "brotli-lib",
"version": "0.0.7",
"description": "TypeScript Brotli encoder and decoder",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./encode": {
"types": "./dist/encode.d.ts",
"import": "./dist/encode.js",
"require": "./dist/encode.cjs"
},
"./decode": {
"types": "./dist/decode.d.ts",
"import": "./dist/decode.js",
"require": "./dist/decode.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"LICENSE_THIRD_PARTY"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rolldown -c && tsc --emitDeclarationOnly --declaration --outDir dist",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench",
"bench:encode": "vitest bench bench/encode.bench.ts",
"bench:decode": "vitest bench bench/decode.bench.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"brotli",
"encode",
"decode",
"compress",
"decompress",
"compression",
"typescript",
"tree-shaking"
],
"author": "Jeremy Tribby, Countertype LLC",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.1.0",
"brotli": "^1.3.3",
"rolldown": "^1.0.0-beta.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}