-
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.61 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.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
{
"name": "stars-components",
"private": true,
"description": "A collection of shared utilities for the Star Network",
"type": "module",
"scripts": {
"clean": "node scripts/clean.mjs",
"prepare": "husky",
"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",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.3",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@favware/npm-deprecate": "^2.0.0",
"@sapphire/ts-config": "^5.0.3",
"@swc/core": "^1.15.40",
"@types/node": "22.15.21",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.8",
"cz-conventional-changelog": "^3.3.0",
"husky": "9.1.7",
"nano-staged": "1.0.2",
"oxfmt": "0.53.0",
"oxlint": "1.68.0",
"publint": "^0.3.21",
"tsdown": "^0.22.2",
"turbo": "^2.9.16",
"typescript": "~5.8.3",
"unrun": "0.3.1",
"vitest": "^4.1.8"
},
"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.5.2"
}