-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "@gideonmax/electron-ts-init",
"version": "1.0.0",
"description": "A CLI Tool for initializing electron projects with TypeScript support and electron-builder, letting you build your app into an installer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GideonMax/electron-ts-init.git"
},
"files": [
"AssetFiles",
"lib",
"index.js",
"LICENSE",
"package-lock.json",
"package.json",
"README.md"
],
"bin": {
"electron-ts-init": "./index.js",
"eti": "./index.js"
},
"keywords": [
"electron",
"cli",
"typescript"
],
"author": "GideonMax",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/GideonMax/electron-ts-init/issues"
},
"homepage": "https://github.com/GideonMax/electron-ts-init#readme",
"dependencies": {
"chalk": "^4.1.2",
"figlet": "^1.5.2",
"inquirer": "^8.1.2"
}
}