-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.1 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
{
"name": "@gemstack/framework",
"version": "0.8.0",
"description": "The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.",
"keywords": [
"ai",
"agent",
"claude-code",
"orchestration",
"framework",
"codegen",
"cli",
"turnkey",
"gemstack"
],
"license": "MIT",
"homepage": "https://github.com/gemstack-land/gemstack/tree/main/packages/framework#readme",
"bugs": {
"url": "https://github.com/gemstack-land/gemstack/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gemstack-land/gemstack",
"directory": "packages/framework"
},
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"framework": "./dist/bin.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dashboard-rpc": {
"import": "./dist/dashboard-rpc/index.js",
"types": "./dist/dashboard-rpc/index.d.ts"
},
"./client": {
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
}
},
"scripts": {
"build": "node scripts/gen-prompts.mjs && tsc -p tsconfig.build.json",
"dev": "node scripts/gen-prompts.mjs && tsc -p tsconfig.build.json --watch",
"typecheck": "node scripts/gen-prompts.mjs && tsc --noEmit",
"test": "node scripts/gen-prompts.mjs && tsc -p tsconfig.test.json && cd dist-test && node --test",
"bundle:dashboard": "node scripts/bundle-dashboard.mjs",
"clean": "rm -rf dist dist-test src/prompts.generated.ts",
"gen:prompts": "node scripts/gen-prompts.mjs",
"check:prompt-drift": "node scripts/check-prompt-drift.mjs"
},
"dependencies": {
"@gemstack/ai-autopilot": "workspace:^",
"telefunc": "^0.2.22",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/jsdom": "^28.0.3",
"@types/node": "^20.0.0",
"jsdom": "^29.1.1",
"typescript": "^5.4.0"
},
"author": "Suleiman Shahbari"
}