-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 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
{
"name": "@r_masseater/sdd-webapp",
"version": "0.1.0",
"description": "Web dashboard for SDD (Spec Driven Development) plugin",
"keywords": [
"claude-code",
"dashboard",
"sdd",
"spec-driven-development"
],
"author": {
"name": "masseater"
},
"repository": {
"type": "git",
"url": "https://github.com/masseater/claude-code-plugin"
},
"bin": {
"sdd-webapp": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run --hot src/cli.ts",
"dev:client": "vite",
"build": "bun run build:client && bun run build:server",
"build:client": "vite build",
"build:server": "bun build src/cli.ts --outdir dist --target bun && bun build src/mcp-server.ts --outdir dist --target bun",
"check": "oxlint",
"check:fix": "oxlint --fix",
"typecheck": "tsgo --noEmit",
"prepublishOnly": "bun run build",
"release": "bun run build && npm publish",
"test": "vitest run",
"release:dry": "bun run build && npm publish --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"highlight.js": "^11.11.0",
"hono": "^4.10.2",
"lucide-react": "^0.577.0",
"marked": "^15.0.0",
"marked-highlight": "^2.2.0",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"valibot": "^1.2.0"
},
"devDependencies": {
"@repo/ts-config": "workspace:*",
"@repo/vitest-config": "workspace:*",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.0",
"@vitest/coverage-v8": "^3.2.0",
"autoprefixer": "^10.4.23",
"oxlint": "^1.57.0",
"postcss": "^8.5.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.1.18",
"vite": "^6.0.0",
"vitest": "^3.2.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}