-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"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": "src/index.ts",
"scripts": {
"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": "eslint . && npm run check-types",
"lint:fix": "eslint . --fix",
"publish": "wrangler publish",
"test": "vitest"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.13.0",
"@cloudflare/workers-types": "4.20260312.1",
"@nodecraft/eslint-config": "47.0.2",
"@stylistic/eslint-plugin": "5.10.0",
"eslint": "10.0.3",
"eslint-plugin-import-newlines": "2.0.0",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-unicorn": "63.0.0",
"typescript-eslint": "8.57.0",
"itty-router": "5.0.22",
"typescript": "5.9.3",
"render2": "1.5.0",
"vitest": "4.1.0",
"wrangler": "4.42.2"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}