-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.13 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
{
"name": "meibo-system-v5-bot",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev --local",
"dev:https": "wrangler dev --local --local-protocol=https",
"start": "wrangler dev",
"cf-typegen": "wrangler types --env-interface CloudflareBindings ./src/worker-configuration.d.ts",
"gen:openapi": "openapi-typescript ./src/openapi.json -o ./src/types/openapi.gen.ts",
"check": "bun lint && bun typo && bun typecheck",
"lint": "eslint \"./**/*.{ts,json}\" --fix",
"lint:ci": "eslint \"./**/*.{ts,json}\" --max-warnings=0",
"typo": "cspell \"./src/**\" --gitignore",
"typecheck": "tsc --noEmit",
"tunnel": "cloudflared tunnel --url http://localhost:8787"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@types/node": "^25.5.0",
"cloudflared": "^0.7.1",
"cspell": "^9.7.0",
"eslint": "^10.1.0",
"eslint-plugin-format": "^2.0.1",
"jiti": "^2.6.1",
"tsx": "^4.21.0",
"typescript": "^5.5.2",
"wrangler": "^4.78.0"
},
"dependencies": {
"slack-cloudflare-workers": "^1.3.9"
}
}