-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
51
52
53
54
55
56
57
{
"name": "@utily/worker-template",
"version": "0.1.3",
"description": "Typescript template for Cloudflare Worker.",
"author": "Utily Contributors",
"license": "MIT",
"private": false,
"repository": "https://github.com/utily/worker-template",
"bugs": {
"url": "https://github.com/utily/worker-template/issues"
},
"homepage": "https://github.com/utily",
"main": "dist/_worker.js",
"typings": "dist/index.d.ts",
"type": "module",
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"scripts": {
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"test": "vitest --run",
"coverage": "vitest --coverage",
"build": "wrangler deploy --dry-run --outdir=dist",
"transpile": "tsc --build tsconfig.json -noEmit",
"deploy": "wrangler deploy --env production",
"login": "wrangler login",
"start": "wrangler dev --live-reload --env local --inspector-port 9229",
"clean": "rimraf dist node_modules coverage"
},
"overrides": {
"esbuild": ">=0.25.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250310.0",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@typescript-eslint/parser": "8.26.1",
"@vitest/coverage-istanbul": "^3.0.8",
"eslint": "^8.57.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20231004",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettierx": "github:utily/prettierx#utily-20231004",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"vitest": "^3.0.8",
"wrangler": "^3.107.3"
},
"dependencies": {
"cloudly-http": "0.2.0-alpha.24",
"cloudly-router": "1.0.1-alpha.0",
"gracely": "2.0.10"
}
}