-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.94 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.94 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
{
"name": "quick-api-client-desktop",
"version": "0.2.0",
"description": "Quick API Client Desktop MVP for cross-platform API testing",
"license": "MIT",
"author": {
"name": "Quick API Client Team",
"email": "no-reply@example.com"
},
"type": "module",
"main": "dist/main/index.js",
"imports": {
"#shared/*": "./src/shared/*.js"
},
"scripts": {
"dev": "concurrently -k \"npm:dev:renderer\" \"npm:dev:main\" \"npm:dev:electron\"",
"dev:renderer": "vite --config build/vite.renderer.config.js",
"dev:main": "node build/esbuild.config.js --watch",
"dev:electron": "wait-on tcp:5173 dist/main/index.js && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build --config build/vite.renderer.config.js",
"build:main": "node build/esbuild.config.js",
"build:msix": "npm run build && npx electron-builder --win --x64 --arm64",
"package": "npm run build && electron-builder",
"package:msix": "npm run build && npx electron-builder --win --x64 --arm64",
"release": "npm run build && electron-builder --publish always",
"lint": "echo \"Add lint rules\"",
"test": "node test-runner.js",
"test:watch": "node test-runner.js --watch",
"test:coverage": "node test-runner.js --experimental-test-coverage"
},
"dependencies": {
"axios": "1.13.2",
"axios-cookiejar-support": "6.0.5",
"lucide-react": "0.562.0",
"prismjs": "1.30.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-resizable-panels": "4.0.15",
"react-simple-code-editor": "0.14.1",
"tough-cookie": "6.0.0",
"zustand": "5.0.9"
},
"devDependencies": {
"@vitejs/plugin-react": "5.1.2",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"electron": "39.2.7",
"electron-builder": "26.0.12",
"esbuild": "0.27.2",
"glob": "13.0.0",
"vite": "7.3.0",
"wait-on": "9.0.3"
}
}