-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.2 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
{
"name": "http-structured-fields",
"version": "1.0.0",
"description": "RFC 9651-compliant parser and serializer for HTTP Structured Field Values.",
"keywords": [
"header-parser",
"http",
"http-headers",
"parser",
"rfc-8941",
"rfc-9651",
"rfc8941",
"rfc9651",
"serializer",
"sfv",
"structured-field-values",
"structured-fields",
"structured-headers",
"typescript"
],
"homepage": "https://github.com/chicong065/http-structured-fields#readme",
"bugs": "https://github.com/chicong065/http-structured-fields/issues",
"license": "MIT",
"author": "Cong Nguyen <chicong065@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/chicong065/http-structured-fields"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"bench": "vitest bench",
"build": "tsdown",
"check": "pnpm lint && pnpm format:check && pnpm typecheck",
"fix": "pnpm lint:fix && pnpm format",
"fixtures:check": "tsx scripts/sync-fixtures.ts --check",
"fixtures:sync": "tsx scripts/sync-fixtures.ts",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"release": "pnpm build && pnpm publish --provenance",
"size": "tsx bench/bundle-size.ts",
"test": "vitest run",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:cjs": "node test/smoke.cjs",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/browser": "^2.1.9",
"@vitest/coverage-v8": "^2.1.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.22.1",
"playwright": "^1.59.1",
"tsdown": "^0.21.10",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.12.0"
}