-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.01 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
{
"name": "maestro",
"version": "0.1.0",
"description": "AI Studio Desktop - One-person software company management platform",
"license": "MIT",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"preview": "electron-vite preview",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"test": "vitest run",
"test:unit": "vitest run --reporter=verbose",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"test:e2e:report": "npx playwright test --reporter=html && npx playwright show-report",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:all": "npm run build && electron-builder --win --mac",
"lint": "eslint src electron"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"chokidar": "^5.0.0",
"electron-updater": "^6.3.9",
"gray-matter": "^4.0.3",
"marked": "^17.0.3",
"node-pty": "^1.1.0",
"pinia": "^2.3.1",
"sql.js": "^1.12.0",
"vue": "^3.5.13",
"vue-i18n": "^12.0.0-alpha.3",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.49.1",
"@tailwindcss/vite": "^4.1.3",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"electron": "^35.1.2",
"electron-builder": "^25.1.8",
"electron-vite": "^3.0.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"happy-dom": "^16.6.0",
"tailwindcss": "^4.1.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.57.2",
"vite": "^6.3.0",
"vitest": "^2.1.8"
}
}