-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 936 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
{
"name": "fleek-image-optimizer",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "./src/main.ts",
"scripts": {
"build": "tsc && rollup -c",
"create-func": "fleek functions create --name",
"deploy-func": "fleek functions deploy --noBundle --path dist/main.js --name",
"lint": "biome check --write && biome format --write && biome lint --write"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-wasm": "^6.2.2",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"rollup": "^2.60.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@jsquash/avif": "1.1.2-single-thread-only",
"@jsquash/jpeg": "^1.2.0",
"@jsquash/jxl": "^1.0.0",
"@jsquash/png": "^2.0.0",
"@jsquash/resize": "^2.0.0",
"@jsquash/webp": "^1.2.0"
},
"license": "MIT"
}