-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.05 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
39
40
41
42
43
44
45
46
47
48
{
"name": "@makerkit/cli",
"version": "1.3.11",
"description": "A CLI for Makerkit",
"type": "module",
"exports": "./dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bin": {
"makerkit": "./dist/index.js"
},
"repository": {
"url": "https://github.com/makerkit/cli.git"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"author": "Giancarlo Buomprisco",
"license": "ISC",
"dependencies": {
"@types/fs-extra": "^11.0.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"openai": "^4.2.0",
"ora": "^7.0.1",
"prompts": "^2.4.2",
"tiny-invariant": "^1.3.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/prompts": "^2.4.2",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}