-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.61 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
{
"name": "black-smith",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Autonomous agent factory — loop runner and worktree engine.",
"keywords": [
"agent",
"agents",
"ai",
"autonomous",
"claude-code",
"code-review",
"git-worktree",
"llm",
"multi-agent",
"orchestration"
],
"homepage": "https://github.com/juzser/blacksmith#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/juzser/blacksmith.git"
},
"bugs": {
"url": "https://github.com/juzser/blacksmith/issues"
},
"author": "juzser (https://github.com/juzser)",
"license": "MIT",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.3.0",
"bin": {
"smith": "factory/orchestrator/dist/cli.js"
},
"scripts": {
"prepare": "pnpm run build",
"check": "bash scripts/check.sh",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json",
"lint": "biome check .",
"format": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build:server": "pnpm build && tsc -p ui/server/tsconfig.json",
"typecheck:server": "tsc -p ui/server/tsconfig.test.json",
"test:server": "pnpm build:server && vitest run --config ui/server/vitest.config.ts",
"test:server:coverage": "pnpm build:server && vitest run --config ui/server/vitest.config.ts --coverage",
"build:ui": "vite build --config ui/vite.config.ts",
"dev:ui": "vite --config ui/vite.config.ts",
"typecheck:ui": "tsc -p ui/tsconfig.json",
"typecheck:ui:test": "tsc -p ui/tsconfig.test.json",
"test:ui": "vitest run --config ui/vitest.config.ts",
"test:ui:coverage": "vitest run --config ui/vitest.config.ts --coverage",
"test:e2e": "pnpm build:server && pnpm build:ui && playwright test --config ui/playwright.config.ts"
},
"dependencies": {
"@hono/node-server": "2.1.1",
"@vue-flow/core": "1.48.2",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"better-sqlite3": "13.0.2",
"drizzle-orm": "0.45.2",
"hono": "4.13.3",
"picomatch": "4.0.5",
"vue": "3.5.41",
"vue-router": "5.2.0",
"yaml": "2.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.10",
"@playwright/test": "1.62.1",
"@tailwindcss/vite": "4.3.3",
"@types/better-sqlite3": "9.6.0",
"@types/node": "26.2.0",
"@vitejs/plugin-vue": "6.0.8",
"@vitest/coverage-v8": "4.1.11",
"drizzle-kit": "0.31.10",
"tailwindcss": "4.3.3",
"typescript": "7.0.2",
"vite": "8.2.2",
"vitest": "4.1.11"
}
}