-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 980 Bytes
/
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
{
"name": "img-worker",
"version": "0.0.1",
"description": "A Cloudflare Worker for Telegraph image hosting",
"engines": {
"node": ">=18.0.0"
},
"author": "Tohrusky",
"license": "BSD-3-Clause license",
"repository": "https://github.com/Tohrusky/img-worker",
"homepage": "https://github.com/Tohrusky/img-worker",
"scripts": {
"format": "prettier --write .",
"lint": "pnpm format && eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck": "pnpm lint && tsc --noEmit"
},
"devDependencies": {
"@babel/types": "^7.22.19",
"@cloudflare/workers-types": "^4.20230904.0",
"@rushstack/eslint-patch": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}