forked from shep-ai/shep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
266 lines (266 loc) Β· 10.8 KB
/
Copy pathpackage.json
File metadata and controls
266 lines (266 loc) Β· 10.8 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
{
"name": "@shepai/cli",
"version": "1.214.0",
"description": "Autonomous AI-native SDLC platform β run parallel AI agents in isolated worktrees to automate the development cycle from idea to deploy.",
"type": "module",
"license": "MIT",
"author": "Shep AI",
"repository": {
"type": "git",
"url": "https://github.com/shep-ai/shep.git"
},
"keywords": [
"ai",
"sdlc",
"automation",
"cli",
"developer-tools",
"code-generation",
"langgraph"
],
"bin": {
"shep": "./dist/src/presentation/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"apis",
"dist",
"web",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsx --tsconfig tsconfig.json src/presentation/web/dev-server.ts",
"dev:cli": "tsx src/presentation/cli/index.ts",
"dev:web": "tsx --tsconfig tsconfig.json src/presentation/web/dev-server.ts",
"dev:storybook": "storybook dev -p 6006",
"generate": "pnpm tsp:codegen",
"tsp:codegen": "tsp compile tsp/ --emit @typespec-tools/emitter-typescript && prettier --write packages/core/src/domain/generated/",
"build:cli": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json --resolve-full-paths && shx mkdir -p dist/packages/core/src/infrastructure/services/tool-installer && shx rm -rf dist/packages/core/src/infrastructure/services/tool-installer/tools && shx cp -r packages/core/src/infrastructure/services/tool-installer/tools dist/packages/core/src/infrastructure/services/tool-installer/tools && shx mkdir -p dist/packages/core/src/infrastructure/templates && shx rm -rf dist/packages/core/src/infrastructure/templates/vite-shadcn-base && shx cp -r packages/core/src/infrastructure/templates/vite-shadcn-base dist/packages/core/src/infrastructure/templates/vite-shadcn-base && shx rm -rf dist/translations && shx cp -r translations dist/translations",
"build": "pnpm build:cli",
"build:release": "pnpm generate && pnpm build:cli && pnpm build:web:prod",
"build:web:prod": "pnpm build:web && shx rm -rf web && shx mkdir -p web && shx cp -r src/presentation/web/.next web/.next && shx rm -rf web/.next/dev web/.next/cache web/.next/trace web/.next/trace-build web/.next/turbopack web/.next/diagnostics web/.next/types web/.next/*.nft.json && shx cp -r src/presentation/web/public web/public && shx cp src/presentation/web/package.json web/ && shx cp -r src/presentation/web/.next/standalone/node_modules web/node_modules && shx rm -rf web/.next/standalone && node -e \"require('fs').writeFileSync('web/next.config.mjs','const c={typedRoutes:true,distDir:\\\".next\\\",output:\\\"standalone\\\",serverExternalPackages:[\\\"tsyringe\\\",\\\"reflect-metadata\\\",\\\"better-sqlite3\\\",\\\"node-pty\\\",\\\"node:os\\\",\\\"node:child_process\\\",\\\"node:fs\\\"]};export default c;\\n')\"",
"build:web": "pnpm --filter @shepai/web build",
"build:storybook": "storybook build",
"test": "vitest run tests/unit tests/integration --passWithNoTests && pnpm run test:e2e",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:int": "vitest run tests/integration",
"test:e2e": "pnpm build:cli && cross-env SHEP_E2E_USE_DIST=1 vitest run tests/e2e && pnpm run test:e2e:web",
"test:e2e:cli": "pnpm build:cli && cross-env SHEP_E2E_USE_DIST=1 vitest run tests/e2e/cli",
"test:e2e:tui": "vitest run tests/e2e/tui",
"test:e2e:web": "playwright test",
"test:e2e:scripts": "vitest run tests/e2e/cli/script-runner.test.ts",
"test:manual": "vitest --config vitest.config.manual.mjs run",
"test:manual:watch": "vitest --config vitest.config.manual.mjs",
"test:single": "vitest run",
"lint": "eslint . --max-warnings 0 --cache",
"lint:fix": "eslint . --fix --max-warnings 0 --cache",
"lint:web": "pnpm --filter @shepai/web lint",
"lint:web:fix": "pnpm --filter @shepai/web lint:fix",
"lint:tsp": "tsp compile tsp/ --no-emit",
"format": "prettier --write --cache .",
"format:check": "prettier --check --cache .",
"format:web": "pnpm --filter @shepai/web format",
"format:web:check": "pnpm --filter @shepai/web format:check",
"format:tsp": "tsp format \"tsp/**/*.tsp\"",
"typecheck": "tsc --noEmit",
"typecheck:web": "pnpm --filter @shepai/web typecheck",
"tsp:compile": "tsp compile tsp/",
"tsp:format": "tsp format \"tsp/**/*.tsp\"",
"tsp:watch": "tsp compile tsp/ --watch",
"demo:seed": "tsx scripts/marketing/seed-demo.ts",
"demo:capture": "tsx scripts/marketing/capture-screenshots.ts",
"demo:video": "tsx scripts/marketing/render-hero-video.ts",
"spec:generate-md": "tsx scripts/spec-generate-md.ts",
"spec:validate": "tsx scripts/spec-validate.ts",
"cli": "tsx src/presentation/cli/index.ts",
"prepare": "husky",
"validate": "pnpm run lint:fix && pnpm run format && pnpm run typecheck && pnpm run tsp:compile",
"electron:dev": "pnpm --filter @shepai/electron dev",
"apps:dev": "cross-env ELECTRON_RUN_AS_NODE= SHEP_SHELL_VARIANT=apps-only pnpm --filter @shepai/electron dev",
"electron:compile": "pnpm --filter @shepai/electron compile",
"electron:build": "pnpm --filter @shepai/electron build",
"electron:build:mac": "pnpm --filter @shepai/electron build:mac",
"electron:build:win": "pnpm --filter @shepai/electron build:win",
"electron:build:linux": "pnpm --filter @shepai/electron build:linux"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.0.0",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.58.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.3",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@storybook/addon-a11y": "8.6.17",
"@storybook/addon-essentials": "8.6.17",
"@storybook/addon-interactions": "8.6.17",
"@storybook/addon-links": "8.6.17",
"@storybook/blocks": "8.6.17",
"@storybook/react": "8.6.17",
"@storybook/react-vite": "8.6.17",
"@storybook/test": "8.6.17",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@timebyping/semantic-release-slack-bot": "^1.1.9",
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.0",
"@types/node-notifier": "^8.0.5",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/which": "^3.0.4",
"@types/ws": "^8.18.1",
"@typespec-tools/emitter-typescript": "^0.3.0",
"@typespec/compiler": "^0.60.0",
"@typespec/json-schema": "^0.60.0",
"@typespec/openapi3": "^0.60.0",
"@typespec/prettier-plugin-typespec": "^0.60.0",
"@typespec/protobuf": "^0.60.0",
"@vitejs/plugin-react": "^5.1.3",
"@xyflow/react": "^12.10.0",
"autoprefixer": "^10.4.24",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"conventional-changelog-angular": "^8.1.0",
"conventional-changelog-writer": "^8.2.0",
"cross-env": "^10.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^0.12.0",
"eslint-plugin-tailwindcss": "4.0.0-beta.0",
"husky": "^9.0.0",
"jsdom": "^28.0.0",
"lint-staged": "^15.0.0",
"lucide-react": "^0.563.0",
"postcss": "^8.5.6",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"radix-ui": "^1.4.3",
"semantic-release": "^25.0.3",
"shx": "^0.4.0",
"sonner": "^2.0.7",
"storybook": "8.6.17",
"tabulator-tables": "^6.4.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"cloudflared",
"electron",
"electron-winstaller",
"esbuild",
"node-pty",
"sharp"
],
"overrides": {
"minimatch": "^7.x",
"@xmldom/xmldom": "^0.8.13",
"fast-uri": "^3.1.2",
"langsmith": "^0.6.0",
"tar": "^7.5.11",
"dompurify": "^3.4.0",
"ip-address": "^10.1.1",
"postcss": "^8.5.10",
"flatted": "^3.4.2",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"rollup": "^4.59.0",
"vite": "^7.3.2",
"handlebars": "^4.7.9",
"@tootallnate/once": "^3.0.1",
"ajv@>=7.0.0-alpha.0 <8.18.0": "^8.18.0",
"brace-expansion@>=2.0.0 <2.0.3": "^2.0.3",
"picomatch@<2.3.2": "^2.3.2",
"undici@>=7.0.0 <7.24.0": "^7.24.0",
"undici@>=6.0.0 <6.24.0": "^6.24.0",
"uuid@>=13.0.0 <13.0.1": "^13.0.1",
"ws@>=8.0.0 <8.20.1": "^8.20.1",
"picomatch@>=4.0.0 <4.0.4": "^4.0.4",
"ajv@<6.14.0": "^6.14.0",
"yaml@>=2.0.0 <2.8.3": "^2.8.3"
}
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.0",
"@ai-sdk/provider": "^3.0.8",
"@anthropic-ai/claude-agent-sdk": "0.2.81",
"@assistant-ui/react": "^0.12.19",
"@cubone/react-file-manager": "^1.35.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@inquirer/prompts": "^8.2.0",
"@langchain/core": "^1.1.22",
"@langchain/langgraph": "^1.1.4",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.1",
"@openrouter/ai-sdk-provider": "^2.5.1",
"ai": "^6.0.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"better-sqlite3": "^12.6.2",
"cli-table3": "^0.6.5",
"cloudflared": "^0.7.1",
"commander": "^14.0.3",
"croner": "^10.0.0",
"i18next": "^26.0.1",
"js-yaml": "^4.1.1",
"minimatch": "^7.x",
"next": "16.2.6",
"node-notifier": "^10.0.1",
"node-pty": "^1.1.0",
"papaparse": "^5.5.3",
"picocolors": "^1.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.1",
"recharts": "^3.8.1",
"reflect-metadata": "^0.2.2",
"tree-kill": "^1.2.2",
"tsyringe": "^4.10.0",
"umzug": "^3.8.2",
"which": "^5.0.0",
"ws": "^8.20.0",
"zod": "^4.3.6"
}
}