-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 832 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 832 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
30
31
32
33
34
{
"name": "compressor-cli",
"version": "0.1.0",
"description": "",
"license": "ISC",
"author": "Dielan",
"type": "module",
"main": "dist/index.ts",
"bin": {
"comp-cli": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"linking": "npm run build && npm link",
"unlink": "npm unlink -g",
"test": "vitest",
"test:once": "vitest run",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@types/node": "^25.0.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"dependencies": {
"chalk": "^5.6.2",
"nanospinner": "^1.2.2",
"sharp": "^0.34.5"
}
}