-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "electron-typescript-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application in TypeScript",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "electron .",
"prestart": "npm run build",
"package": "npm run build && electron-builder build",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint src/**/*.ts --quiet --fix",
"clean": "rimraf ./dist ./release"
},
"repository": "https://github.com/aabuhijleh/electron-typescript-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo",
"typescript"
],
"author": {
"name": "author name",
"email": "author@email.com",
"url": "http://author.example.com/"
},
"license": "CC0-1.0",
"devDependencies": {
"@types/node": "^16.11.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"electron": "^15.3.1",
"electron-builder": "^22.14.13",
"eslint": "^8.26.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}