-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.37 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"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",
"drizzle:verify-bootstrap": "bash scripts/verify-drizzle-bootstrap.sh",
"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:db:reset": "pnpm --filter web db:empty-database",
"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:seed": "tsx dev/seed/index.ts",
"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.2",
"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": {
"@sentry/cli": "^3.3.4",
"mdast-util-to-hast": "^13.2.1",
"storybook": "^9.1.17",
"next": "^16.2.6",
"preact": "10.28.3",
"glob": ">=13.0.1",
"esbuild": ">=0.25.0",
"lodash": ">=4.18.1",
"diff": ">=8.0.3",
"fast-xml-parser": ">=5.7.3",
"vite": ">=8.0.5 <8.0.11",
"dompurify": "^3.4.2",
"handlebars": "^4.7.9",
"brace-expansion": "^5.0.5",
"node-forge": "^1.4.0",
"postcss": ">=8.5.10 <8.5.14",
"picomatch@^2": "^2.3.2",
"picomatch@^4": "^4.0.4",
"yaml": "^2.8.4",
"undici@^7": "^7.25.0",
"path-to-regexp": "^8.4.0",
"ip-address": "^10.2.0",
"drizzle-orm": "^0.45.2",
"lodash-es": ">=4.18.1",
"@xmldom/xmldom": "^0.8.13",
"qs": ">=6.14.1",
"serialize-javascript": ">=7.0.3",
"hono": "^4.12.18",
"@hono/node-server": "^1.19.14",
"undici@^6": "^6.24.1",
"lightningcss": "1.30.1",
"axios": "^1.16.0",
"protobufjs": "^8.0.3"
},
"patchedDependencies": {
"@storybook/nextjs@9.1.20": "patches/@storybook__nextjs@9.1.20.patch",
"expo-server-sdk": "patches/expo-server-sdk.patch"
},
"onlyBuiltDependencies": [
"@swc/core",
"@tailwindcss/oxide",
"core-js-pure",
"es5-ext",
"esbuild",
"libpq",
"protobufjs",
"workerd"
]
}
}