-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
39
40
41
42
43
44
45
46
{
"name": "uebersicht-widgets",
"version": "1.0.0",
"description": "my personal desktop widgets for uebersicht",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "simonhaenisch/uebersicht-widgets",
"keywords": [
"desktop",
"customization",
"uebersicht"
],
"author": "Simon Haenisch | github.com/simonhaenisch",
"license": "UNLICENSED",
"homepage": "https://github.com/simonhaenisch/uebersicht-widgets#readme",
"dependencies": {
"@octokit/types": "6.17.4",
"@primer/octicons": "14.2.2",
"anybar": "5.0.0",
"dotenv": "10.0.0",
"node-fetch": "2.6.1"
},
"devDependencies": {
"prettier": "2.3.2",
"prettier-plugin-organize-imports": "2.2.0",
"typescript": "4.3.5"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"package.json"
],
"options": {
"useTabs": false
}
}
]
}
}