generated from electron/electron-quick-start-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "youtube-tv-desktop",
"version": "1.1.2",
"description": "Electron wrapper for youtube.com/tv.",
"author": {
"name": "Eden Tyler-Moss",
"email": "[email protected]",
"url": "https://www.etylermoss.com"
},
"main": "./build/index.js",
"scripts": {
"build": "webpack --config webpack.dev.js",
"build-prod": "webpack --env production --config webpack.prod.js",
"start": "electron ./build/index.js",
"pack": "electron-builder --config electron-builder.json --dir -lw",
"dist": "electron-builder --config electron-builder.json -lw"
},
"repository": "https://github.com/etylermoss/youtube-tv-desktop",
"license": "GNU GPLv3",
"devDependencies": {
"@types/electron-localshortcut": "^3.1.0",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"eslint": "^7.16.0",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-webpack-plugin": "^2.4.1",
"ts-loader": "^8.0.12",
"typescript": "^3.9.7",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"electron-localshortcut": "^3.2.1"
}
}