-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.27 KB
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
47
48
49
50
51
52
53
54
55
{
"name": "renamer",
"version": "1.1.0",
"description": "Bulk renamer utility",
"repository": "https://github.com/randy-sab-roy/Renamer",
"main": "out/main.js",
"scripts": {
"build": "tsc",
"start": "npm run build && electron ./out/main.js",
"postinstall": "electron-builder install-app-deps",
"dist": "npm run build && electron-builder"
},
"author": "Randy Sab-Roy <randy.sab.roy@gmail.com>",
"license": "ISC",
"build": {
"productName": "Renamer",
"appId": "com.randysr.renamer",
"files": [
"out/**/*",
"node_modules/**/*",
"app/**/*",
"assets/**/*",
"package.json"
],
"directories": {
"buildResources": "assets"
},
"nsis": {
"include": "assets/installer.nsh"
},
"linux": {
"category": "Utility",
"executableName": "Renamer",
"target": [
{
"target": "deb"
}
]
}
},
"devDependencies": {
"@types/jquery": "^3.3.31",
"electron": "^6.0.9",
"electron-builder": "^21.2.0",
"tslint": "^5.20.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"bootstrap": "^4.3.1",
"jquery": "^3.4.1",
"popper.js": "^1.15.0"
}
}