-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
131 lines (128 loc) · 3.29 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"author": "Johan Borestad <[email protected]> (http://borestad.com/)",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@antfu/eslint-config": "^0.29.4",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"eslint": "^8.27.0",
"eslint-plugin-unicorn": "^44.0.2"
},
"dependenciesBin": [
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/gh",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/eget",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/just",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/sponge",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/sd",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/rg",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/hr",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/gron",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/upx",
"https://raw.githubusercontent.com/borestad/filedump/main/binaries/x86_64-linux/gojq"
],
"apt": [],
"eslintConfig": {
"extends": "@antfu",
"root": true,
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"project": "tsconfig.json"
},
"plugins": [
"unicorn"
],
"rules": {
"unicorn/template-indent": [
"warn",
{
"tags": [],
"functions": [],
"selectors": ["TemplateLiteral"]
}
]
},
"globals": {
"$": true,
"argv": true,
"cd": true,
"chalk": true,
"echo": true,
"fetch": true,
"fs": true,
"glob": true,
"globby": true,
"log": true,
"nothrow": true,
"os": true,
"path": true,
"ProcessOutput": true,
"ProcessPromise": true,
"question": true,
"quiet": true,
"quote": true,
"quotePowerShell": true,
"sleep": true,
"stdin": true,
"which": true,
"within": true,
"YAML": true,
"zx": true
},
"overrides": [
{
"files": [
"*.ts",
"*.tsx",
"*.js",
"*.mjs"
],
"rules": {
"template-tag-spacing": [
"error",
"always"
],
"@typescript-eslint/require-await": ["error"],
"@typescript-eslint/no-floating-promises": ["error"],
"@typescript-eslint/no-misused-promises": ["error"],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxBOF": 0,
"maxEOF": 0
}
]
}
},
{
"files": [
"settings.json"
],
"rules": {
"jsonc/sort-keys": [
"error",
"asc",
{
"caseSensitive": true,
"natural": false,
"minKeys": 2
}
]
}
},
{
"files": [
"*.config.json"
],
"rules": {
"no-multi-spaces": "off"
}
}
]
}
}