-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.79 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "proof-pack",
"version": "0.2.0",
"private": true,
"description": "Local-first proof packet workspace for turning work into client-ready evidence.",
"author": {
"name": "Reese",
"email": "hermes@acropolisops.com"
},
"license": "MIT",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite --host 127.0.0.1 --strictPort",
"build": "tsc -b && vite build",
"preview": "vite preview --host 127.0.0.1",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -b",
"e2e": "playwright test",
"electron:dev": "concurrently -k \"npm run dev\" \"wait-on http://127.0.0.1:5173 && electron .\"",
"pack": "npm run build && electron-builder --dir --publish never",
"dist": "npm run build && electron-builder --publish never",
"dist:linux": "npm run build && electron-builder --linux AppImage deb --publish never",
"dist:win": "npm run build && electron-builder --win nsis portable --publish never",
"dist:mac": "npm run build && electron-builder --mac dmg zip --publish never"
},
"dependencies": {},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"electron": "^42.5.2",
"electron-builder": "^26.15.3",
"jsdom": "^29.1.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.9",
"wait-on": "^9.0.10"
},
"build": {
"appId": "com.proofpack.desktop",
"productName": "Proof Pack",
"directories": {
"output": "release",
"buildResources": "build"
},
"artifactName": "Proof-Pack-${version}-${os}-${arch}.${ext}",
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"asar": true,
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.productivity"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Office",
"maintainer": "Reese <hermes@acropolisops.com>"
},
"publish": [
{
"provider": "github",
"releaseType": "draft"
}
]
}
}