-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 5.32 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 5.32 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": "onevibe",
"private": true,
"version": "0.1.0",
"description": "Open-source governed AI workspace with a Manus-like task UX and ONEComputer security controls.",
"type": "module",
"scripts": {
"dev": "concurrently -k -n check,api,web -c yellow,green,cyan \"tsx scripts/dev-check.ts\" \"npm:dev:api\" \"npm:dev:web\"",
"dev:all": "concurrently -n api,web -c green,cyan \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "node --env-file-if-exists=.env --import tsx/esm --watch server/index.ts",
"dev:web": "vite",
"build": "tsc -b && tsc -p tsconfig.server.json && vite build",
"check": "npm run lint && npm run test && npm run build && npm run check:e2e-harness",
"check:e2e-harness": "tsc --ignoreConfig --noEmit --skipLibCheck --target ES2022 --module NodeNext --moduleResolution NodeNext --types node scripts/dev-check.ts scripts/linear-cli.ts scripts/onecomputer-live-e2e.ts scripts/onecomputer-allocation-recovery-e2e.ts scripts/onecomputer-cancel-e2e.ts scripts/claude-sdk-live-e2e.ts scripts/claude-sdk-slides-e2e.ts scripts/claude-chat-e2e.ts scripts/restart-residue-e2e.ts scripts/follow-up-attachment-e2e.ts scripts/follow-up-recovery-e2e.ts scripts/retry-http-e2e.ts scripts/onevibe-golden-e2e.ts scripts/document-roundtrip-e2e.ts scripts/website-build-e2e.ts scripts/skills-e2e.ts scripts/skill-marketplace-e2e.ts scripts/skill-marketplace-github-e2e.ts scripts/auth-owner-e2e.ts scripts/postgres-import.ts scripts/postgres-chat-e2e.ts scripts/postgres-auth-e2e.ts scripts/postgres-auth-http-e2e.ts scripts/postgres-metadata-e2e.ts scripts/postgres-operations-e2e.ts scripts/postgres-state-e2e.ts scripts/postgres-taskstore-e2e.ts scripts/postgres-http-e2e.ts scripts/postgres-http-sse-e2e.ts scripts/postgres-backup-restore-e2e.ts scripts/postgres-import-e2e.ts scripts/postgres-ops.ts scripts/theme-acceptance-e2e.ts",
"lint": "oxlint src server scripts",
"test": "vitest run",
"preview": "vite preview",
"wallet": "tsx server/wallet-cli.ts",
"theme:validate-seed": "tsx scripts/theme-seed.ts",
"e2e:themes": "tsx scripts/theme-acceptance-e2e.ts",
"linear": "tsx scripts/linear-cli.ts",
"e2e:onecomputer": "tsx scripts/onecomputer-live-e2e.ts",
"e2e:onecomputer-recovery": "tsx scripts/onecomputer-allocation-recovery-e2e.ts",
"e2e:claude-sdk": "tsx scripts/claude-sdk-live-e2e.ts",
"e2e:claude-slides": "tsx scripts/claude-sdk-slides-e2e.ts",
"e2e:restart-audit": "tsx scripts/restart-residue-e2e.ts",
"e2e:onecomputer-cancel": "tsx scripts/onecomputer-cancel-e2e.ts",
"e2e:follow-up-attachment": "tsx scripts/follow-up-attachment-e2e.ts",
"e2e:follow-up-recovery": "tsx scripts/follow-up-recovery-e2e.ts",
"e2e:retry-http": "tsx scripts/retry-http-e2e.ts",
"e2e:golden": "tsx scripts/onevibe-golden-e2e.ts",
"e2e:chat": "tsx scripts/claude-chat-e2e.ts",
"e2e:document-roundtrip": "tsx scripts/document-roundtrip-e2e.ts",
"e2e:skills": "tsx scripts/skills-e2e.ts",
"e2e:skill-marketplace": "tsx scripts/skill-marketplace-e2e.ts",
"e2e:skill-marketplace-github": "tsx scripts/skill-marketplace-github-e2e.ts",
"e2e:auth-owner": "tsx scripts/auth-owner-e2e.ts",
"e2e:website-build": "tsx scripts/website-build-e2e.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:ops": "tsx scripts/postgres-ops.ts",
"db:check": "drizzle-kit check",
"db:import": "tsx scripts/postgres-import.ts",
"e2e:postgres-chat": "tsx scripts/postgres-chat-e2e.ts",
"e2e:auth-postgres": "tsx scripts/postgres-auth-e2e.ts",
"e2e:postgres-metadata": "tsx scripts/postgres-metadata-e2e.ts",
"e2e:postgres-operations": "tsx scripts/postgres-operations-e2e.ts",
"e2e:postgres-state": "tsx scripts/postgres-state-e2e.ts",
"e2e:postgres-taskstore": "tsx scripts/postgres-taskstore-e2e.ts",
"e2e:postgres-http": "tsx scripts/postgres-http-e2e.ts",
"e2e:postgres-http-sse": "tsx scripts/postgres-http-sse-e2e.ts",
"e2e:postgres-backup-restore": "tsx scripts/postgres-backup-restore-e2e.ts",
"e2e:postgres-auth-http": "tsx scripts/postgres-auth-http-e2e.ts",
"e2e:postgres-import": "tsx scripts/postgres-import-e2e.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.210",
"@assistant-ui/react": "^0.14.27",
"@assistant-ui/react-markdown": "^0.14.5",
"@better-auth/drizzle-adapter": "^1.6.23",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-virtual": "^3.14.6",
"better-auth": "^1.6.23",
"better-sqlite3": "12.11.1",
"drizzle-orm": "^0.45.2",
"fflate": "^0.8.3",
"framer-motion": "^12.42.2",
"lucide-react": "^1.24.0",
"pdf-lib": "^1.17.1",
"postgres": "^3.4.9",
"pptxgenjs": "^4.0.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"drizzle-kit": "^0.31.10",
"oxlint": "^1.71.0",
"puppeteer-core": "^25.3.0",
"tsx": "^4.23.1",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^4.1.10"
},
"overrides": {
"@esbuild-kit/core-utils": {
"esbuild": "0.25.12"
}
}
}