-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "speech2code.client",
"displayName": "Speech2Code",
"productName": "speech2code",
"version": "0.0.2-beta.1",
"description": "Speech2Code main app - Enables you to code using just your voice",
"author": {
"email": "[email protected]",
"name": "Pedro Augusto Silva",
"url": "https://github.com/pedrooaugusto"
},
"homepage": "https://github.com/pedrooaugusto/speech-to-code",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"build": {
"appId": "com.august.speech2code.client",
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "icons",
"output": "bin"
},
"publish": null,
"extraResources": [
{
"from": "./src/resources/",
"to": "."
}
]
},
"scripts": {
"test": "npm run build-spoken && tsc && node dist/__tests__/spoken-interface.test.js",
"start": "electron .",
"prestart": "bash ./tools.sh dev",
"pack": "bash ./tools.sh prod && electron-builder -w zip",
"pack-linux": "bash ./tools.sh prod && electron-builder -l deb",
"build-spoken": "cd ../spoken && npm run build"
},
"keywords": [
"Speech-to-code"
],
"dependencies": {
"cross-spawn": "^7.0.3",
"dotenv": "^10.0.0",
"node-ipc": "9.1.4",
"spoken": "file:../spoken/dist"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/node-ipc": "9.1.3",
"electron": "11.2.3",
"electron-builder": "22.10.5",
"typescript": "^4.4.2"
}
}