-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.87 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 4.87 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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "kitcn",
"private": true,
"workspaces": [
"convex",
"example",
"packages/*",
"test",
"www"
],
"scripts": {
"analyze": "bun --cwd example analyze",
"build": "bun --cwd www build",
"build:pkg": "bun --cwd packages/kitcn build",
"build:watch": "bun --cwd packages/kitcn build:watch",
"check": "bun lint && bun typecheck && bun run test && bun run test:cli && bun run test:concave && bun run fixtures:check:auto && bun run test:verify && bun run test:runtime",
"check:ci": "bun lint && bun typecheck && bun run test && bun run test:cli && bun run test:concave && bun run fixtures:check",
"deps:sync": "bun tooling/dependency-pins.ts sync",
"deps:upgrade": "bun tooling/dependency-pins.ts upgrade",
"dev": "bun --cwd www dev",
"fixtures:check": "bun tooling/fixtures.ts check --backend concave",
"fixtures:check:auto": "bun run fixtures:sync && bun run fixtures:check",
"fixtures:check:full": "bun --cwd packages/kitcn build && bun run fixtures:check",
"fixtures:sync": "bun tooling/dependency-pins.ts sync --skip-validate && bun tooling/fixtures.ts sync --backend concave",
"gen": "bun --cwd example gen",
"postinstall": "bun tooling/sync-kitcn-skill.ts && bunx skiller@latest apply || true",
"intent:build": "bun --cwd packages/kitcn build && touch example/convex/functions/schema.ts",
"intent:check": "bun run intent:validate && bun run intent:stale && bun run intent:pack && bun run intent:build && bun lint:fix",
"intent:pack": "npm pack --json --dry-run ./packages/kitcn",
"intent:scaffold": "cd packages/kitcn && bunx intent scaffold",
"intent:stale": "node tooling/intent-stale.mjs",
"intent:validate": "cd packages/kitcn && bunx intent validate skills",
"lint": "biome check && eslint",
"lint:fix": "biome check --write",
"lint:slop": "bun tooling/slop.ts scan --lint",
"lint:slop:delta": "bun tooling/slop.ts delta",
"release": "bun build:pkg && changeset publish",
"scenario:check": "bun tooling/scenarios.ts check",
"scenario:check:convex": "bun tooling/check-convex-scenarios.ts",
"scenario:codegen": "bun tooling/scenarios.ts codegen",
"scenario:dev": "bun tooling/scenarios.ts dev",
"scenario:prepare": "bun tooling/scenarios.ts prepare",
"scenario:test": "bun tooling/scenarios.ts test",
"schema:stress": "bun tooling/auth-schema-stress.ts --project example",
"start": "bun --cwd www start",
"test": "bun run test:bun && bun run test:vitest",
"test:auth": "bun tooling/auth-smoke.ts",
"test:bun": "bun test",
"test:cli": "CI=1 bun test ./packages/kitcn/src/cli/cli.commands.ts",
"test:concave": "bun ./test/concave/run-smoke.ts",
"test:coverage": "bun tooling/coverage-check.ts",
"test:e2e": "bun tooling/auth-e2e.ts",
"test:limits:stress": "CONVEX_LIMIT_STRESS=1 vitest run convex/orm/limits.stress.test.ts",
"test:limits:stress:coverage": "CONVEX_LIMIT_STRESS=1 vitest run convex/orm/limits.stress.test.ts --coverage --coverage.reporter=text",
"test:limits:tune": "CONVEX_LIMIT_TUNE=1 vitest run convex/orm/limits.defaults-tuning.test.ts",
"test:runtime": "bun run scenario:test -- all",
"test:verify": "bun run scenario:prepare -- create-convex-bare && cd tmp/scenarios/create-convex-bare/project && bunx kitcn verify",
"test:vitest": "vitest run",
"typecheck": "turbo typecheck",
"typecheck:watch": "tsc --noEmit --watch"
},
"dependencies": {
"@tanstack/query-core": "5.90.20",
"@tanstack/react-query": "5.95.2",
"@tanstack/solid-query": "5.90.23",
"convex": "1.36.1",
"hono": "4.12.9",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@concavejs/cli": "0.0.1-alpha.14",
"@concavejs/runtime-bun": "0.0.1-alpha.14",
"@edge-runtime/vm": "^5.0.0",
"@fast-check/vitest": "^0.2.4",
"@happy-dom/global-registrator": "^20.7.0",
"@rollup/plugin-babel": "^6.1.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.3.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/parser": "8.56.1",
"@typescript/native-preview": "^7.0.0-dev.20260225.1",
"@vitest/coverage-v8": "^4.0.18",
"better-auth": "1.6.9",
"bun-types": "^1.3.9",
"concurrently": "^9.2.1",
"convex-test": "^0.0.41",
"eslint": "10.0.2",
"eslint-plugin-react-hooks": "7.0.1",
"fast-check": "^4.5.3",
"solid-js": "1.9.11",
"turbo": "^2.8.11",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"ultracite": "7.2.4",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.18",
"yauzl": "^3.2.0",
"yazl": "^3.3.1"
},
"packageManager": "bun@1.3.9"
}