-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.61 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "byte-codec",
"version": "1.1.0",
"description": "Generic byte-level primitives (ByteWriter, ByteReader, CRC-32, deflate/inflate) and PNG/JPEG image encoding/decoding with zero PDF knowledge — the shared utility package for the documents.js family.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ExaDev/byte-codec.git"
},
"homepage": "https://github.com/ExaDev/byte-codec#readme",
"bugs": {
"url": "https://github.com/ExaDev/byte-codec/issues"
},
"license": "MIT",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"types": {
"import": "./dist/*.d.ts",
"require": "./dist/*.d.cts"
},
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run _build",
"_build": "tsdown",
"prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
"lint": "turbo run _lint",
"_lint": "eslint . --fix --cache --max-warnings 0",
"lint:check": "eslint . --max-warnings 0",
"typecheck": "turbo run _typecheck",
"_typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.node.json",
"test": "turbo run _test",
"_test": "vitest run",
"test:watch": "vitest",
"test:workers": "turbo run _test:workers",
"_test:workers": "vitest run --config vitest.workers.config.ts",
"prepare": "husky"
},
"packageManager": "pnpm@11.6.0",
"dependencies": {
"fflate": "^0.8.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@cloudflare/vitest-pool-workers": "^0.20.1",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/node": "^26.1.2",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"publint": "^0.3.21",
"semantic-release": "^25.0.8",
"tsdown": "^0.22.13",
"turbo": "^2.10.8",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}