-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.6 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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.7.1",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r run build && pnpm --filter @x-code-cli/cli run dev",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "tsx packages/cli/tests/e2e/runner.ts",
"lint": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -b",
"ci": "pnpm typecheck && pnpm lint && pnpm test && pnpm build",
"release": "node scripts/release.mjs",
"prepare": "husky"
},
"devDependencies": {
"@clack/prompts": "^0.10.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/yargs": "^17.0.0",
"esbuild": "^0.27.0",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.0.0",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@vscode/ripgrep"
],
"peerDependencyRules": {
"allowedVersions": {
"eslint": "10"
}
}
}
}