-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.78 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.78 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
{
"name": "flare-stack",
"version": "1.0.0",
"description": "Ship a sprint in a day. Isolated AI chambers per ticket. The workflow Git never gave you.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"flare": "dist/cli.js"
},
"files": [
"dist",
"prompts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"worktree",
"ai",
"agent",
"cli",
"flare",
"sprint",
"jira",
"productivity",
"parallel",
"developer-tools",
"gemini",
"vertex-ai",
"google-cloud",
"devops",
"dx"
],
"author": "FLARE STACK Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danielpinto-developer/flare-stack.git"
},
"homepage": "https://github.com/danielpinto-developer/flare-stack#readme",
"bugs": {
"url": "https://github.com/danielpinto-developer/flare-stack/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@browserbasehq/stagehand": "^3.0.8",
"@google/generative-ai": "^0.24.1",
"@inquirer/prompts": "^8.2.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^17.2.4",
"ink": "^6.6.0",
"kokoro-js": "^1.2.1",
"react": "^19.2.4",
"simple-git": "^3.27.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/react": "^19.2.13",
"playwright": "^1.58.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}