-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 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
{
"name": "openspec-viewer",
"version": "0.2.0",
"description": "Interactive browser viewer for OpenSpec directories",
"type": "module",
"bin": {
"openspec-viewer": "./bin/openspec-viewer.js"
},
"main": "./dist/cli/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:frontend\"",
"dev:server": "tsx watch src/cli/index.ts -- ./test-openspec",
"dev:frontend": "vite --config frontend/vite.config.ts",
"build": "npm run build:server && npm run build:frontend",
"build:server": "tsc",
"build:frontend": "vite build --config frontend/vite.config.ts",
"start": "node dist/cli/index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"openspec",
"viewer",
"specification",
"cli",
"documentation"
],
"author": "MusicAdam",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MusicAdam/openspec-viewer.git"
},
"bugs": {
"url": "https://github.com/MusicAdam/openspec-viewer/issues"
},
"homepage": "https://github.com/MusicAdam/openspec-viewer#readme",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/",
"dist/",
"dist-frontend/"
],
"dependencies": {
"@fastify/static": "^8.1.0",
"@fastify/websocket": "^11.0.2",
"chokidar": "^4.0.3",
"commander": "^13.0.0",
"fastify": "^5.2.1",
"marked": "^15.0.6",
"open": "^10.1.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/node": "^22.10.2",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"postcss": "^8.4.49",
"svelte": "^5.16.1",
"svelte-check": "^4.1.2",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.6"
}
}