-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
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
{
"name": "cloudflare-workers-image-optimization",
"version": "1.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"lint": "eslint src",
"lint:fix": "eslint --fix src && prettier -w src",
"test": "jest"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-async": "^1.0.7",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"wrangler": "^3.91.0"
},
"dependencies": {
"wasm-image-optimization": "^1.1.0"
},
"main": "index.js",
"repository": "https://github.com/SoraKumo001/cloudflare-workers-image-optimization",
"author": "SoraKumo <[email protected]>",
"license": "MIT"
}