-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "sharex-r2-cloudflare-workers",
"version": "1.0.0",
"private": true,
"description": "Cloudflare Worker to handle uploads from ShareX to R2",
"homepage": "https://github.com/Cherry/sharex-r2-cloudflare-workers#readme",
"bugs": {
"url": "https://github.com/Cherry/sharex-r2-cloudflare-workers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cherry/sharex-r2-cloudflare-workers.git"
},
"license": "MIT",
"author": "James Ross <james@jross.me> (https://jross.me)",
"type": "module",
"main": "dist/index.mjs",
"scripts": {
"build": "esbuild src/index.ts --format=esm --platform=neutral --bundle --minify --sourcemap --main-fields=browser,module,main --outfile=dist/index.mjs",
"check-types": "npm run check-types:worker && npm run check-types:tests",
"check-types:worker": "tsc --noEmit",
"check-types:tests": "tsc --noEmit -p test/tsconfig.json",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"lint": "npm run lint:js && npm run lint:json && npm run check-types",
"lint:js": "eslint \"**/*.{js,mjs,ts}\"",
"lint:js:fix": "eslint \"**/*.{js,mjs,ts}\" --fix",
"lint:json": "eslint \"**/*.json\"",
"publish": "wrangler publish",
"test": "vitest"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.5.22",
"@cloudflare/workers-types": "4.20241022.0",
"@nodecraft/eslint-config": "44.0.0",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-unicorn": "56.0.0",
"itty-router": "5.0.18",
"render2": "1.4.1",
"typescript": "5.6.3",
"vitest": "2.1.3",
"wrangler": "3.83.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}