-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.55 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.55 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
108
109
110
{
"name": "libbliapp",
"version": "1.0.4",
"description": "libbliapp",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "webpack",
"watch": "nodemon --watch ./src --exec 'npm run build && electron .'",
"dist": "electron-builder --mac --win",
"mac": "electron-builder --mac",
"win": "electron-builder --win"
},
"dependencies": {
"@electron/remote": "^2.0.10",
"axios": "^1.4.0",
"bootstrap": "^5.3.0",
"clipboard": "^2.0.11",
"clipboardy": "^3.0.0",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.1",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"fs-extra": "^11.1.1",
"jimp": "^0.22.8",
"knex": "^2.4.2",
"langchain": "^0.0.92",
"macaddress": "^0.5.3",
"microsoft-cognitiveservices-speech-sdk": "^1.29.0",
"moment": "^2.29.4",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"electron": "^25.0.1",
"electron-builder": "^23.6.0",
"electron-packager": "^17.1.1",
"electron-rebuild": "^3.2.9",
"html-webpack-plugin": "^5.5.1",
"nodemon": "^2.0.22",
"style-loader": "^3.3.3",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3"
},
"build": {
"appId": "com.spring.libbliapp",
"directories": {
"output": "release"
},
"mac": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"identity": "com.spring.libbliapp",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
}
}