This repository was archived by the owner on Sep 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "google-assistant-control-pc",
"version": "1.1.4",
"description": "A program to make thing with google assistant",
"main": "./output/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && electron ./output/main.js",
"dist": "npm run build && electron-builder build --win --publish never",
"deploy": "npm run build && electron-builder build --win --publish always"
},
"repository": {
"type": "git",
"url": "https://github.com/Chapikas/AssistantForPC.git"
},
"author": "Chapikas <granviamurcia2@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bootstrap": "^4.3.1",
"@types/fs-extra": "^8.0.1",
"@types/electron-store": "^3.2.0",
"electron": "^7.2.4",
"electron-builder": "^22.2.0",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"bootstrap": "^4.4.1",
"chokidar": "^3.3.1",
"dotenv": "^8.2.0",
"electron-handlebars": "^2.0.0",
"electron-is-dev": "^1.1.0",
"electron-log": "^4.0.3",
"electron-store": "^5.1.0",
"electron-updater": "^4.2.0",
"fs-extra": "^8.1.0",
"type-fest": "^0.8.1",
"x-default-browser": "^0.4.0"
}
}