-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.46 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.46 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
{
"name": "keystone",
"version": "0.1.0",
"description": "AI-assisted software architecture documentation",
"main": "./dist/main/index.js",
"homepage": "https://github.com/dortort/keystone",
"author": "dortort",
"license": "MIT",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"@trpc/client": "^10.0.0",
"@trpc/server": "^10.0.0",
"better-sqlite3": "^11.0.0",
"electron-trpc": "^0.6.0",
"nanoid": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-highlight": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.0",
"zod": "^3.23.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/better-sqlite3": "^7.6.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^3.0.0",
"autoprefixer": "^10.0.0",
"electron": "^34.0.0",
"electron-builder": "^25.0.0",
"electron-vite": "^5.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
},
"build": {
"appId": "com.dortort.keystone",
"productName": "Keystone",
"directories": {
"output": "release",
"buildResources": "resources"
},
"files": [
"dist/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
}
}