-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.17 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
{
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10 <11"
},
"scripts": {
"build": "pnpm -r run build",
"build:native": "pnpm --filter @x-code-cli/core run build:native",
"dev": "pnpm -r run build && pnpm --filter @x-code-cli/cli run dev",
"test": "pnpm build && vitest run",
"test:e2e": "pnpm build && tsx packages/cli/tests/e2e/runner.ts",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -b && tsc -p packages/core/tests/tsconfig.json && tsc -p packages/cli/tests/tsconfig.json && tsc -p packages/cli/tests/e2e/tsconfig.json",
"check:package": "pnpm build && node scripts/check-package-size.mjs",
"ci": "pnpm typecheck && pnpm lint:check && pnpm format:check && pnpm test",
"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",
"@xterm/headless": "^6.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",
"lint-staged": "^16.0.0",
"node-pty": "^1.1.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": {
"overrides": {
"@hono/node-server": "1.19.15",
"body-parser": "2.3.0",
"fast-uri": "3.1.5",
"hono": "4.13.3",
"ip-address": "10.5.0"
},
"onlyBuiltDependencies": [
"esbuild",
"@vscode/ripgrep",
"@fugood/whisper.node",
"fs-ext-extra-prebuilt",
"node-pty"
],
"peerDependencyRules": {
"allowedVersions": {
"eslint": "10"
}
}
}
}