-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.98 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.98 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
{
"name": "aiml-prompting-language",
"private": true,
"engines": {
"bun": ">=1.1.0"
},
"packageManager": "bun@1.1.42",
"scripts": {
"preinstall": "node -e \"if (!process.env.npm_config_user_agent || !process.env.npm_config_user_agent.includes('bun')) { console.error('\\u001b[31mError: This project uses bun as the package manager. Please use bun install.\\u001b[39m'); process.exit(1); }\"",
"build": "turbo run build --concurrency=5",
"dev": "turbo run dev --concurrency 11",
"dev:watch": "turbo run build && bun --watch turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "rm -rf node_modules && turbo run clean",
"test": "turbo run test --concurrency=5",
"validate": "bun run build && bun test",
"initial-setup": "dotenv -- turbo run db:generate && turbo run db:migrate",
"e2e": "turbo run e2e",
"bunp-version": "bun changeset version",
"release": "bun run build --filter=!landing-page && bun run deploy",
"deploy": "turbo run deploy"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.2.5",
"@types/lodash": "^4.17.16",
"claude-task-master": "^1.6.4",
"concurrently": "^9.1.2",
"tsup": "^8.4.0",
"turbo": "^2.5.0"
},
"workspaces": ["packages/*", "apps/*"],
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@changesets/cli": "^2.29.2",
"@mastra/core": "^0.6.0",
"@next/third-parties": "^15.3.2",
"boxen": "^8.0.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"fastmcp": "^1.20.5",
"figlet": "^1.8.0",
"fuse.js": "^7.0.0",
"gradient-string": "^3.0.0",
"helmet": "^8.1.0",
"human-regex": "^2.1.5",
"inquirer": "^12.5.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^10.2.0",
"mermaid": "^11.6.0",
"next-themes": "^0.4.6",
"openai": "^4.89.0",
"ora": "^8.2.0"
},
"type": "module"
}