-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1 KB
/
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
37
38
{
"name": "scripts",
"version": "1.0.0",
"packageManager": "pnpm@9.0.6",
"type": "module",
"description": "",
"author": "",
"license": "MIT",
"keywords": [],
"main": "index.js",
"scripts": {
"clean:filter-images": "pnpm -C packages/filter-images run clean",
"filter-images": "tsx packages/filter-images/src/index.ts",
"lint": "eslint .",
"squoosh": "pnpm -C examples/compress-images run jpg",
"squoosh:webp": "pnpm -C examples/compress-images run webp",
"test": "vitest",
"test:unit": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"dotenv": "^16.4.5",
"eslint": "^9.1.1",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"picocolors": "^1.0.0",
"simple-git": "^3.24.0",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}