-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.99 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.99 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
77
78
79
80
81
82
{
"name": "kilocode-monorepo",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=24 <25"
},
"scripts": {
"prepare": "bash scripts/prepare.sh",
"preinstall": "npx only-allow pnpm",
"typecheck": "scripts/typecheck-all.sh",
"build": "pnpm --filter web build",
"test": "pnpm --filter web test",
"lint": "scripts/lint-all.sh",
"format": "oxfmt .",
"format:check": "oxfmt --list-different .",
"format:changed": "git diff --name-only $(git merge-base origin/main HEAD) --diff-filter=ACMR -- '**/*.js' '**/*.jsx' '**/*.ts' '**/*.tsx' '**/*.json' '**/*.css' '**/*.md' | xargs -r oxfmt --no-error-on-unmatched-pattern",
"validate": "pnpm run typecheck && pnpm run lint && pnpm run test",
"drizzle": "pnpm --filter @kilocode/db exec drizzle-kit",
"test:e2e": "pnpm --filter web run test:e2e",
"dependency-cycle-check": "pnpm --filter web run dependency-cycle-check",
"worktree:prepare": "bash scripts/worktree-prepare.sh",
"test:db": "docker compose -f dev/docker-compose.yml up -d --wait postgres && pnpm drizzle migrate",
"dev:start": "tsx dev/local/cli.ts up",
"dev:stop": "tsx dev/local/cli.ts stop",
"dev:status": "tsx dev/local/cli.ts status",
"dev:restart": "tsx dev/local/cli.ts restart",
"dev:env": "tsx dev/local/cli.ts env",
"dev:discord-gateway-cron": "tsx dev/discord-gateway-cron.ts",
"dev:kiloclaw-fly-instances": "tsx services/kiloclaw/scripts/dev-fly-instances.ts"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"devDependencies": {
"@typescript/native-preview": "catalog:",
"husky": "^9.1.7",
"ink": "^6.8.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"oxlint-plugin-react-native": "^0.2.8",
"oxlint-tsgolint": "^0.17.1",
"react": "^19.2.4",
"tsx": "^4.21.0",
"typescript": "catalog:"
},
"pnpm": {
"overrides": {
"mdast-util-to-hast": "^13.2.1",
"storybook": "^9.1.17",
"next": "^16.1.6",
"preact": "10.28.3",
"glob": ">=13.0.1",
"esbuild": ">=0.25.0",
"lodash": ">=4.17.23",
"diff": ">=8.0.3",
"fast-xml-parser": ">=5.3.4",
"vite": ">=6.4.1",
"qs": ">=6.14.1",
"serialize-javascript": ">=7.0.3",
"hono": "^4.12.7",
"undici@^6": "^6.24.1",
"lightningcss": "1.30.1",
"axios": ">=1.15.0 <2"
},
"patchedDependencies": {
"@storybook/nextjs@9.1.20": "patches/@storybook__nextjs@9.1.20.patch",
"@gorhom/bottom-sheet@5.1.8": "patches/@gorhom__bottom-sheet@5.1.8.patch",
"stream-chat-react-native-core": "patches/stream-chat-react-native-core.patch",
"expo-server-sdk": "patches/expo-server-sdk.patch"
},
"onlyBuiltDependencies": [
"@swc/core",
"@tailwindcss/oxide",
"core-js-pure",
"es5-ext",
"esbuild",
"libpq",
"protobufjs",
"stream-chat-react-native-core",
"workerd"
]
}
}