-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.72 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
{
"name": "jemcats-localspeech",
"version": "v1.0.2-beta",
"description": "Run TTS models locally in a user friendly GUI on your Mac with an M-Series processor!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build-deploy": "electron-builder -m --arm64 --publish never && xcrun notarytool submit dist/LocalSpeech-1.0.2-beta-arm64.dmg --keychain-profile jemcats-dev-icloud-pass --wait",
"build-dev": "electron-builder -m --arm64 --publish never"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JEMcats-Software/LocalSpeech.git"
},
"keywords": [
"TTS",
"Text-To-Speech"
],
"author": "JEMcats.Software",
"license": "ISC",
"bugs": {
"url": "https://github.com/JEMcats-Software/LocalSpeech/issues"
},
"homepage": "https://github.com/JEMcats-Software/LocalSpeech#readme",
"devDependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.8.4",
"electron": "^35.1.4",
"electron-builder": "^26.0.12",
"express": "^5.1.0"
},
"build": {
"files": [
"./UI/**",
"./backend/**",
"index.js",
"package.json",
"package-lock.json"
],
"extraResources": [
{
"from": "./node_modules",
"to": "node_modules",
"filter": ["**/*"]
}
],
"productName": "LocalSpeech",
"appId": "com.jemcats-software.localspeech",
"mac": {
"icon": "AppIcon.icns",
"target": "dmg",
"hardenedRuntime": true,
"gatekeeperAssess": false
}
},
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.8.4",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"uuid": "^11.1.0",
"ws": "^8.18.1"
}
}