-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "rabbit-linker",
"version": "0.1.0",
"type": "module",
"description": "Stable link that redirects to random resource download link via Vercel.",
"repository": "[email protected]:un-ts/rabbit-linker.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "tsx scripts/build",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"start": "vc dev"
},
"devDependencies": {
"@1stg/common-config": "^9.0.0",
"@octokit/request": "^8.1.4",
"@types/web": "^0.0.119",
"commitlint": "^18.2.0",
"eslint": "^8.52.0",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"simple-git-hooks": "^2.9.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2",
"vercel": "^32.5.0"
},
"resolutions": {
"prettier": "^2.8.8"
},
"commitlint": {
"extends": "@1stg"
},
"eslintConfig": {
"extends": "@1stg"
},
"eslintIgnore": [
"/public/index.html",
"!/.*.js"
],
"prettier": "@1stg/prettier-config",
"renovate": {
"extends": [
"@1stg"
]
}
}