forked from cloudflare/workers-for-platforms-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 769 Bytes
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
{
"name": "workers-for-platforms-example-project",
"version": "1.0.0",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250922.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"tsx": "^4.20.4",
"typescript": "^4.8.3",
"wrangler": "^4.38.0"
},
"dependencies": {
"cloudflare": "^5.1.0"
},
"scripts": {
"deploy:wfp": "tsx scripts/deploy-wfp.ts",
"dev": "wrangler dev",
"start": "wrangler dev",
"deploy": "npm run deploy:wfp && wrangler deploy",
"lint": "npx eslint ./src",
"format": "npx prettier --write '**/*.{ts,js,cjs,json}'"
}
}