-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "super-platform",
"private": true,
"description": "Supercode — AI-powered SWE agent platform. Monorepo containing dashboard, CLI, and terminal web client.",
"repository": {
"type": "git",
"url": "git+https://github.com/yashdev9274/supercli.git"
},
"bugs": {
"url": "https://github.com/yashdev9274/supercli/issues"
},
"homepage": "https://supercli.com",
"keywords": [
"ai",
"coding-agent",
"cli",
"swe-agent",
"developer-tools",
"monorepo"
],
"workspaces": [
"apps/*",
"apps/supercode-cli/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"postinstall": "bun run scripts/postinstall.ts",
"check": "bun run lint && bun run typecheck && bun test",
"dev:web": "turbo dev --filter=web",
"db:generate:terminal": "bun run --cwd packages/db-terminal db:generate",
"db:studio:terminal": "bun run --cwd packages/db-terminal db:studio",
"dev:api": "turbo dev --filter=api",
"dev:terminal": "turbo dev --filter=supercode-cli-client",
"dev:terminal-server": "turbo dev --filter=supercode-cli-server",
"dev:docs": "turbo dev --filter=docs",
"dev:superdesign": "turbo dev --filter=superdesign",
"build:superdesign": "turbo build --filter=superdesign",
"supercode": "bun run --cwd apps/supercode-cli/server src/cli/main.ts",
"supercode:prod": "node apps/supercode-cli/server/dist/main.js",
"dev:video": "bun run --cwd apps/video dev",
"build:video": "bun run --cwd apps/video build",
"build:video:square": "bun run --cwd apps/video build:square",
"build:video:vertical": "bun run --cwd apps/video build:vertical"
},
"devDependencies": {
"turbo": "^2.5.8",
"nodemailer": "^9.0.1",
"@types/nodemailer": "^8.0.1"
},
"packageManager": "bun@1.2.21",
"dependencies": {
"@pinecone-database/pinecone": "^7.0.0",
"g": "^2.0.1",
"inngest": "^3.54.1",
"vercel": "^50.13.2"
},
"version": "0.1.51"
}