-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "json-web-streams",
"version": "1.1.0",
"description": "Streaming JSON parser built on top of the Web Streams API, so it works in web browsers, Node.js, and many other environments",
"keywords": [
"web streams",
"TransformStream",
"JSON"
],
"homepage": "https://github.com/zengm-games/json-web-streams",
"repository": {
"type": "git",
"url": "git://github.com/zengm-games/json-web-streams.git"
},
"license": "Apache-2.0",
"author": "Jeremy Scheff <jeremy@zengm.com> (https://zengm.com/)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"bench": "vitest bench",
"build": "tsdown --unbundle",
"format": "prettier --write .",
"lint": "npm-run-all --parallel lint:oxlint lint:tsc",
"lint:oxlint": "oxlint --type-aware",
"lint:tsc": "tsc",
"prepack": "node --run build",
"prepare": "husky",
"test": "vitest"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,json,scss,ts,cts,mts,tsx,md}": "prettier --write"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"jsonpath-rfc9535": "^1.3.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@types/node": "^24.9.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.24.0",
"oxlint-tsgolint": "^0.3.0",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"tsdown": "^0.15.9",
"typescript": "^5.9.3",
"vitest": "^4.0.3",
"zod": "^4.1.12"
},
"engines": {
"node": ">=22",
"pnpm": "^10.0.0"
}
}