-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@fba/cli",
"version": "0.1.4",
"description": "Super CLI tool for creating, managing, and running fastapi-best-architecture projects",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/fastapi-practices/fba-cli#readme",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastapi-practices/fba-cli.git"
},
"bugs": {
"url": "https://github.com/fastapi-practices/fba-cli/issues"
},
"bin": {
"fba-cli": "./dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"README_en.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --format esm --out-dir dist --target node18 --clean",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"dependencies": {
"@clack/core": "^1.1.0",
"@clack/prompts": "^1.1.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"execa": "^9.6.1",
"ofetch": "^1.5.1",
"picocolors": "^1.1.1",
"smol-toml": "^1.6.0"
}
}