forked from presidio-oss/specif-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 KB
/
package.json
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
{
"name": "specif_ai",
"version": "1.9.7",
"description": "AI-powered requirements management and specification platform",
"productName": "Specifai",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "electron-builder install-app-deps",
"package:mac": "electron-builder build -m --arm64 --x64",
"package:win": "electron-builder build -w --x64 --ia32",
"serve:electron": "electron .",
"build:ui": "rm -rf ui && cd ../ui && npm run build:dev && cp -r ./dist/ui ../electron/ui/",
"build-watch:ui": "rm -rf ui && mkdir ui && cd ../ui && npm run watch:dev",
"watch:ui": "concurrently \"npm run build-watch:ui\" \"onchange '../ui/dist/**/*' -- cp -r ../ui/dist/* ./\""
},
"engines": {
"node": ">=18.17"
},
"author": "presidio",
"license": "ISC",
"devDependencies": {
"@electron/fuses": "^1.8.0",
"@electron/rebuild": "^3.6.0",
"autoprefixer": "^10.4.20",
"electron": "^31.2.1",
"electron-builder": "^24.13.3",
"electron-reload": "^2.0.0-alpha.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.14",
"concurrently": "^8.2.2",
"onchange": "^7.1.0"
},
"dependencies": {
"@sentry/electron": "^5.3.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"electron-notarize": "^1.2.2",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^10.0.0",
"express": "^4.21.0"
},
"build": {
"files": "!build-assets${/*}",
"appId": "",
"extraResources": [
".env",
"ui"
],
"mac": {
"forceCodeSigning": true,
"category": "public.app-category.utilities",
"icon": "assets/icons/hai_icon.icns",
"gatekeeperAssess": false,
"notarize": {
"teamId": "9NENB68LF9"
},
"hardenedRuntime": true,
"target": "dmg",
"entitlements": "build-assets/entitlements.mac.plist",
"entitlementsInherit": "build-assets/entitlements.mac.plist"
},
"dmg": {
"sign": false
},
"win": {
"icon": "assets/icons/hai_icon.ico"
},
"linux": {
"icon": "assets/icons/hai_icon.png"
}
}
}