-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.02 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
{
"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:env:mobile": "tsx dev/local/mobile-env.ts",
"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@11.1.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.17",
"oxlint-tsgolint": "0.17.4",
"react": "19.2.6",
"tsx": "catalog:",
"typescript": "catalog:"
}
}