-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 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
56
57
58
59
60
{
"name": "urim",
"version": "1.0.3",
"description": "To do list tool with Urgency-Importance feature.",
"scripts": {
"transpile": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run transpile && electron ./dist/main.js",
"build:win": "rm -rf dist && npm run transpile && electron-builder -w",
"build:mac": "rm -rf dist && npm run transpile && electron-builder -m",
"build:linux": "rm -rf dist && npm run transpile && electron-builder -l",
"build:all": "rm -rf dist && npm run transpile && electron-builder -mwl"
},
"build": {
"extraMetadata": {
"main": "./dist/main.js"
},
"appId": "Urim",
"mac": {
"icon": "src/icon/icon-mac.png",
"target": "dmg"
},
"win": {
"icon": "src/icon/icon-win.png",
"target": "zip"
},
"linux": {
"icon": "src/icon/icon-linux.png",
"target": [
"zip",
"deb"
]
},
"directories": {
"output": "out"
}
},
"repository": "https://github.com/narugit/Urim",
"keywords": [
"Electron",
"todo",
"utility",
"typescript"
],
"author": "asaiasa, Gadpulse, narugit, TauXdev <narusens@gmail.com>",
"license": "MIT",
"devDependencies": {
"electron": "^6.0.8",
"electron-builder": "^21.2.0",
"tslint": "^5.10.0",
"typescript": "^3.4.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"electron-store": "^5.1.0",
"fs": "0.0.1-security",
"material-design-lite": "^1.3.0"
}
}