This repository was archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) Β· 1.54 KB
/
package.json
File metadata and controls
73 lines (73 loc) Β· 1.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "AFK",
"description": "The missing screen saver shortcut for macOS",
"version": "1.3.1",
"author": "Jamie Weavis",
"bugs": {
"url": "https://github.com/jamieweavis/afk/issues"
},
"build": {
"asarUnpack": "src/applescript/*.applescript"
},
"dependencies": {
"applescript": "^1.0.0",
"auto-launch": "^5.0.1",
"electron-is-accelerator": "^0.1.2",
"electron-store": "^4.0.0",
"jquery": "^3.5.0"
},
"devDependencies": {
"electron": "6.0.3",
"electron-builder": "21.2.0",
"eslint": "6.2.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"husky": "3.0.4",
"lint-staged": "9.2.3",
"prettier": "1.18.2"
},
"homepage": "https://github.com/jamieweavis/afk#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"afk",
"app",
"electron",
"hotkey",
"lock",
"macos",
"menubar",
"screensaver",
"shortcut",
"sleep"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.html": [
"prettier --write",
"git add"
]
},
"main": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jamieweavis/afk.git"
},
"scripts": {
"dist": "build",
"lint": "eslint .",
"pack": "build --dir",
"start": "electron src/main.js",
"format": "prettier --write 'src/**/*.{js,html}'"
}
}