-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 6.69 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 6.69 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
{
"name": "k0-poc",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/thoughtpivot/kota0.git"
},
"type": "module",
"scripts": {
"start:docker": "docker compose up -d",
"start:app": "dotenv -e .env -- node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register node_modules/@thoughtpivot/flight/src/flight.ts --mode development --app_home . --exclude_paths bundles",
"start:slides": "dotenv -e .env -- slidev slides/slides.md --port 3030",
"start:gateway": "dotenv -e .env -- node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register scripts/start-scribe-gateway.ts",
"start:workspace": "concurrently -n app,slides,docker,gateway -c blue,cyan,magenta,green \"npm run start:app\" \"npm run start:slides\" \"npm run start:docker\" \"npm run start:gateway\"",
"kill:ports": "bash scripts/kill-ports.sh",
"restart": "npm run kill:ports && npm run start:workspace",
"typecheck": "vue-tsc -p app/tsconfig.app.json --noEmit && tsc -p tsconfig.backend.json --noEmit",
"test:k0-scribe-components": "tsx --test -r tsconfig-paths/register app/src/components/kota0/apps/data/appScribeComponents.test.ts",
"k0:smoke": "node scripts/k0-smoke.mjs",
"k0:evals": "node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register scripts/kota0-evals/runner.ts",
"k0:prompt-invariants": "node scripts/k0-prompt-invariants.mjs",
"k0:ai-stats": "node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register scripts/k0-ai-stats.mjs",
"k0:guards": "npm run k0:prompt-invariants && tsx --test -r tsconfig-paths/register app/src/components/kota0/viewer/materialize/appBackendForFlight.test.ts app/src/components/kota0/viewer/materialize/materializeLeadingApi.test.ts app/src/components/kota0/viewer/host/bundlePreviewGuard.test.ts app/src/components/kota0/ai/workflow/chatWorkflow.test.ts app/src/components/kota0/ai/workflow/complexityClassifier.test.ts app/src/components/kota0/ai/patch/scribeBackendContract.test.ts app/src/components/kota0/ai/dock/usePlanChat.test.ts app/src/components/kota0/ai/patch/bundleArchitectureRules.test.ts app/src/components/kota0/ai/tools/agentTools.test.ts app/src/components/kota0/ai/tools/verifyAppConnectivity.test.ts app/src/components/kota0/deploy/bundle/starterBundleCache.test.ts app/src/components/kota0/deploy/bundle/bundleDirInflate.test.ts app/src/components/kota0/deploy/bundle/bundleBinaryPermissions.test.ts app/src/components/kota0/deploy/runner/bundleEventBus.test.ts app/src/components/kota0/deploy/bundle/bundleMaterializeFingerprint.test.ts app/src/components/kota0/deploy/runner/bundleBuildErrorParse.test.ts app/src/components/kota0/ai/provider/aiProvider.test.ts app/src/components/kota0/ai/provider/aiTurnStats.test.ts app/src/components/kota0/ai/provider/workspaceAiCompletion.test.ts app/src/components/kota0/apps/data/AppRepository.duplicate.test.ts app/src/components/kota0/viewer/workspace/loadingTips.test.ts app/src/components/kota0/ai/patch/applyPatch.test.ts app/src/components/kota0/ai/patch/applyModelPatches.test.ts app/src/components/kota0/ai/plan/plan.test.ts app/src/components/kota0/ai/chat/chatPhase.test.ts app/src/components/kota0/ai/tools/toolRetry.test.ts app/src/components/kota0/ai/workflow/bundleStateSummary.test.ts app/src/components/kota0/ai/plan/applyAgentLoop.test.ts app/src/components/kota0/ai/plan/oneShotTurn.test.ts app/src/components/kota0/ai/plan/ideationRun.test.ts app/src/components/kota0/ai/chat/chatForModel.test.ts app/src/components/kota0/runtime/runtimeErrorStore.test.ts shared/kota0PlatformAi.test.ts app/src/components/kota0/gateway/ScribeGateway.test.ts app/src/components/kota0/deploy/target/localDockerTarget.test.ts app/src/components/kota0/deploy/target/deployOrchestrator.test.ts shared/bundleRedisClient.test.ts && npm run k0:evals",
"k0:sync-viewer-app": "node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register scripts/syncKota0ViewerGeneratedAppVue.ts",
"k0:push-backend-scribe": "dotenv -e .env -- node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register scripts/pushKota0BackendToScribe.ts",
"k0:migrate-from-powervibe": "dotenv -e .env -- node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register scripts/migrateScribePowervibeToKota0.ts",
"k0:randomize-icons": "dotenv -e .env -- node --disable-warning=DEP0040 ./node_modules/tsx/dist/cli.mjs -r tsconfig-paths/register app/src/components/kota0/apps/icons/randomizeAppIcons.script.ts",
"build:app": "dotenv -e .env -- vite build --config app/vite.config.ts",
"build:slides:pdf": "slidev export slides/slides.md --format pdf --output docs/k0-board-slides.pdf --dark"
},
"dependencies": {
"@ai-sdk/google": "^3.0.79",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@google/genai": "^1.50.1",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@koa/bodyparser": "^6.1.0",
"@koa/router": "^15.0.0",
"@mastra/core": "^1.37.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@phosphor-icons/vue": "^2.2.1",
"@shikijs/markdown-it": "^4.0.2",
"@thoughtpivot/flight": "^1.1.0",
"@vueuse/core": "^12.8.2",
"ai": "^6.0.191",
"axios": "^1.15.2",
"chart.js": "^4.5.1",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"dompurify": "^3.4.1",
"dotenv": "^17.4.2",
"ioredis": "^5.8.2",
"jsonrepair": "^3.14.0",
"koa": "^3.1.1",
"lucide-vue-next": "^0.503.0",
"markdown-it": "^14.1.1",
"pg": "^8.20.0",
"reka-ui": "^2.6.0",
"shiki": "^4.0.2",
"tailwind-merge": "^3.3.1",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.3",
"vue-codemirror": "^6.1.1",
"vue-router": "^5.0.6",
"zod": "^4.4.2"
},
"devDependencies": {
"@slidev/cli": "^52.14.2",
"@slidev/theme-default": "^0.25.0",
"@tailwindcss/vite": "^4.1.11",
"@types/dompurify": "^3.0.5",
"@types/koa": "^3.0.2",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.13",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.15.3",
"@types/pg": "^8.20.0",
"@vitejs/plugin-vue": "^6.0.1",
"concurrently": "^9.2.0",
"daisyui": "^5.0.50",
"dotenv-cli": "^11.0.0",
"sass": "^1.99.0",
"tailwindcss": "^4.1.11",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"unplugin-icons": "^22.1.0",
"vite": "^7.0.6",
"vue-tsc": "^2.2.12"
},
"overrides": {
"@thoughtpivot/flight": {
"koa": "^3.1.1"
}
}
}