-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@wherejuly/http-convenience-pack",
"version": "0.0.18",
"description": "HTTP Convenience Pack",
"author": "valentineshi.dev@gmail.com",
"type": "module",
"main": "./code/index.js",
"module": "./code/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./code/index.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"test:foundation": "npm run types:check && cross-env NODE_ENV=test vitest run --config tests/foundation/.ancillary/config/vitest.config.ts",
"types:check": "npx tsc --noEmit --project .",
"lint": "npx eslint ./src && npx eslint ./.usage",
"commitlint": "commitlint --config ./.ci/.config/commitlint/commitlint.config.cjs --edit",
"pre-push": "npm run test:foundation",
"package:build": "npm run test:foundation && npm run lint && rimraf ./.delivery/.builds/package && tsc -p ./.delivery/configuration/tsconfig.json && npm run package:de-alias && npm run package:bundle:copy",
"package:lint:readme": "npx markdown-link-check --progress --quiet ./readme.md ./.docs",
"package:de-alias": "npx tsc-alias -p ./.delivery/configuration/tsconfig.json --verbose",
"package:changelog:generate": "bash .ci/generate-merge-release-notes.sh > ./.docs/changelog/changelog.readonly.md",
"package:bundle:copy": "cpy ./package.json ./LICENSE ./readme.md ./.docs ./.delivery/.builds/dist",
"package:publish": "cd ./.delivery/.builds/dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhereJuly/62-http-convenience-pack.git"
},
"homepage": "https://github.com/WhereJuly/62-http-convenience-pack#readme",
"issues": "https://github.com/WhereJuly/62-http-convenience-pack/issues",
"license": "MIT",
"keywords": [
"typescript",
"http",
"convenience",
"autocomplete",
"methods",
"statuses",
"codes",
"mime",
"headers",
"types",
"values",
"rfc",
"enums",
"helpers",
"validate",
"group",
"normalize",
"standard",
"uniform",
"ensure"
],
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.9.2",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"markdown-link-check": "^3.13.6",
"rimraf": "^5.0.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"code/*",
"types/*",
".docs/*",
"changelog.md"
]
}