-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.64 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.64 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
{
"name": "studio-write",
"productName": "Studio Write",
"version": "0.1.0",
"description": "Desktop chat app (step 1: minimal shell).",
"main": ".vite/build/main.js",
"private": true,
"scripts": {
"start": "node scripts/dev.mjs",
"start:forge": "electron-forge start",
"reload": "node scripts/reload.mjs",
"ensure-dev": "node scripts/ensure-dev.mjs",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"typecheck": "tsc --noEmit",
"check": "run-p --aggregate-output --continue-on-error typecheck lint lint:css format:check",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run tests/unit",
"test:unit:watch": "vitest tests/unit",
"test:e2e": "playwright test",
"test:headed": "playwright test --headed"
},
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=22.0.0 <23"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@playwright/test": "^1.48.0",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.1",
"@wordpress/eslint-plugin": "^24.5.0",
"@wordpress/prettier-config": "^4.44.0",
"@wordpress/stylelint-config": "^23.36.0",
"electron": "41.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"npm-run-all2": "^8.0.4",
"prettier": "npm:wp-prettier@^3.0.3",
"stylelint": "^16.26.1",
"typescript": "~5.4.5",
"vite": "^5.4.21",
"vitest": "^3.2.4"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.117",
"@base-ui/react": "^1.4.1",
"electron-squirrel-startup": "^1.0.1",
"gray-matter": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"zod": "^4.3.6"
}
}