-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "about-window",
"version": "1.15.2",
"description": "'About App' window for Electron application",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"dep": "npm install",
"build": "tsc -p src/",
"watch": "tsc --watch -p src/",
"tslint": "tslint -p ./src",
"stylelint": "stylelint styles/*.css",
"check-formatting": "prettier --check '**/*.ts'",
"lint": "npm run tslint && npm run stylelint && npm run check-formatting",
"prettier": "prettier --write '**/*.ts'",
"example": "NODE_ENV=production electron ./example",
"debug": "electron ./example",
"start": "npm run dep && npm run build && npm run example",
"preversion": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysd/electron-about-window.git"
},
"keywords": [
"Electron",
"electron-component",
"about",
"window"
],
"author": "rhysd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysd/electron-about-window/issues"
},
"homepage": "https://github.com/rhysd/electron-about-window#readme",
"devDependencies": {
"@types/node": "^16.x",
"electron": "^15.1.0",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tslint": "^6.1.2",
"typescript": "^4.4.3"
}
}