generated from borestad/cron-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.27 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"author": "Johan Borestad <[email protected]> (http://borestad.com/)",
"engines": {
"node": ">=18"
},
"scripts": {
"postinstall": "rm -f pnpm-lock.yaml &> /dev/null"
},
"devDependencies": {
"@antfu/eslint-config": "^0.29.4",
"@tsconfig/deno": "^1.0.9",
"@types/node": "^18.17.14",
"eslint": "^8.48.0",
"eslint-plugin-unicorn": "^44.0.2"
},
"preinstallBinaries": [
"https://raw.githubusercontent.com/borestad/ci-utils/main/bin/ga-dump-context",
"https://raw.githubusercontent.com/borestad/ci-utils/main/bin/ga-dump-env",
"https://raw.githubusercontent.com/borestad/ci-utils/main/bin/ip-public",
"https://raw.githubusercontent.com/borestad/ci-utils/main/bin/memo",
"https://raw.githubusercontent.com/borestad/ci-utils/main/bin/pstats",
"https://raw.githubusercontent.com/borestad/ci-utils/main/bin/system-info",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/bkt",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/dust",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/ets",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/fd",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/iprange",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/gron",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/rg",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/sd",
"https://raw.githubusercontent.com/borestad/static-binaries/main/x86_64/sponge"
],
"eslintConfig": {
"extends": "@antfu",
"root": true,
"ignorePatterns": [
"!.*"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./.github/config/tsconfig.json"
},
"plugins": [
"unicorn"
],
"rules": {
"unicorn/template-indent": [
"warn",
{
"tags": [],
"functions": [],
"selectors": [
"TemplateLiteral"
]
}
]
},
"globals": {},
"overrides": [
{
"files": [
"*.ts",
"*.tsx",
"*.js",
"*.mjs"
],
"rules": {
"template-tag-spacing": [
"error",
"always"
],
"no-console": "off",
"@typescript-eslint/comma-dangle": "off",
"@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",
"deno.json*"
],
"rules": {
"jsonc/sort-keys": [
"error",
"asc",
{
"caseSensitive": true,
"natural": false,
"minKeys": 2
}
]
}
}
]
}
}