-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.52 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.52 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
{
"name": "claudeworks",
"version": "1.0.0",
"description": "ClaudeWorks — desktop app for managing Claude Code profiles",
"author": "Mduffy37",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mduffy37/claudeworks.git"
},
"main": "dist/electron/main.js",
"scripts": {
"dev": "concurrently -k \"npm run dev:renderer\" \"npm run dev:electron:watch\"",
"dev:renderer": "vite --config vite.config.ts",
"dev:electron": "tsc -p tsconfig.electron.json && NODE_ENV=development electron .",
"dev:electron:watch": "node scripts/dev-electron.js",
"build": "tsc -p tsconfig.electron.json && rm -rf dist/builtin-plugin && cp -r src/builtin-plugin dist/builtin-plugin && rm -rf dist/scripts && cp -r src/scripts dist/scripts && vite build",
"start": "electron .",
"package": "npm run build && electron-builder",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "vitest run test/smoke.test.ts"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.0",
"electron": "^33.0.0",
"electron-builder": "^25.0.0",
"typescript": "^5.4.0",
"vite": "^5.4.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
}
}