-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 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": "@makerkit/cli",
"version": "2.0.3",
"description": "A CLI for Makerkit",
"type": "module",
"exports": "./dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bin": {
"cli": "./dist/index.js",
"makerkit": "./dist/index.js",
"makerkit-cli-mcp": "./dist/mcp.js"
},
"repository": {
"url": "https://github.com/makerkit/cli.git"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run build"
},
"author": "Giancarlo Buomprisco",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/fs-extra": "11.0.4",
"chalk": "5.6.2",
"commander": "14.0.3",
"dotenv": "17.2.4",
"execa": "9.6.1",
"fs-extra": "11.3.3",
"ora": "9.3.0",
"prompts": "2.4.2",
"tiny-invariant": "1.3.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@types/prompts": "2.4.9",
"prettier": "3.5.3",
"tsup": "8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}