forked from alexeylovchikov/eye-extended-shell-extension
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "eye-on-cursor",
"version": "2.0.0.dev",
"description": "Let your desktop \"keep an eye\" on your mouse! And with the included cursor indicator, keep track of your pointer's every action!",
"license": "GPL-3.0-or-later",
"main": "eye-on-cursor@djinnalexio.github.io/extension.js",
"repository": {
"type": "git",
"url": "git+https://github.com/djinnalexio/eye-on-cursor.git"
},
"homepage": "https://github.com/djinnalexio/eye-on-cursor#readme",
"bugs": {
"url": "https://github.com/djinnalexio/eye-on-cursor/issues"
},
"scripts": {
"format": "prettier ./eye-on-cursor@djinnalexio.github.io/ --write",
"lint": "eslint ./eye-on-cursor@djinnalexio.github.io/ --fix",
"test": "make test"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"printWidth": 100,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.2.5"
}
}