-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.07 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
{
"name": "root-plugins",
"version": "1.0.0",
"private": true,
"description": "Official plugins for @wolfstar/http-framework",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"clean": "node scripts/clean.mjs",
"prepare": "husky || true",
"lint": "oxlint packages && oxfmt --check packages",
"lint:fix": "oxlint --fix packages && oxfmt --write packages",
"test": "vitest run",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"update": "pnpm update --interactive --recursive",
"changeset": "changeset add",
"publish": "pnpm build && changeset publish",
"publish:snapshot": "changeset version --snapshot next && pnpm build && changeset publish --tag next --no-git-tag"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.5",
"@changesets/cli": "^2.31.0",
"@changesets/get-github-info": "^0.8.0",
"@changesets/types": "^6.1.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@favware/npm-deprecate": "^2.0.0",
"@sapphire/ts-config": "^5.0.3",
"@swc/core": "^1.15.43",
"@types/node": "22.15.21",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.10",
"cz-conventional-changelog": "^3.3.0",
"husky": "9.1.7",
"knip": "6.26.0",
"nano-staged": "1.0.2",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"publint": "^0.3.21",
"tsdown": "^0.22.4",
"turbo": "^2.10.4",
"typescript": "~5.8.3",
"unrun": "0.3.1",
"vitest": "^4.1.10"
},
"nano-staged": {
"*.{ts,mts,cts,tsx,mjs,cjs,js,jsx,json,jsonc,yml,yaml,md}": "oxfmt --no-error-on-unmatched-pattern",
"*.{ts,mts,cts,tsx,mjs,cjs,js,jsx}": "oxlint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@11.13.1+sha512.b2fc7683b8a6525414e7d13e1ba28caaddde96bf66ec540bfaeb7e702b81f3e0be4d1f295edf7f9fe0396740a8dce4509c582ddf79891f4543fea32d37645f25"
}