-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 897 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
35
36
37
38
39
40
{
"name": "fal-cli",
"version": "0.2.0",
"description": "Schema-driven CLI for fal.ai models.",
"type": "module",
"bin": {
"fal-cli": "./dist/fal-cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup && chmod +x dist/fal-cli.js",
"typecheck": "tsc -p tsconfig.check.json",
"start": "node dist/fal-cli.js",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"prepack": "pnpm run build",
"prepare": "husky"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"@fal-ai/client": "^1.9.6",
"commander": "^12.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^4.1.5",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}