-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
41 lines (41 loc) · 1.2 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": "@trodi/electron-splashscreen",
"version": "1.0.2",
"description": "Simple splashscreen for electron applications",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"generate-api-doc": "typedoc --readme none --mode file --theme markdown --hideSources --excludePrivate --out api-doc/ index.ts",
"prebuild": "tslint --config tslint.json *.ts",
"build": "tsc",
"prepublish": "npm run build && npm run generate-api-doc",
"preexample": "npm run build",
"example": "electron examples/example.js",
"preexample-dynamic": "npm run build",
"example-dynamic": "electron examples/example-dynamic.js"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": "trodi/electron-splashscreen",
"keywords": [
"electron",
"splashscreen",
"splash-screen",
"loading-screen"
],
"author": "Troy McKinnon",
"license": "MIT",
"bugs": {
"url": "https://github.com/trodi/electron-splashscreen/issues"
},
"homepage": "https://github.com/trodi/electron-splashscreen#readme",
"devDependencies": {
"electron": "^11.0.1",
"tslint": "^5.7.0",
"typedoc": "^0.15.6",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.4"
}
}