-
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.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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.8",
"description": "A CLI for Makerkit",
"type": "module",
"exports": "./dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bin": {
"cli": "dist/index.mjs",
"makerkit": "dist/index.mjs",
"makerkit-cli-mcp": "dist/mcp.mjs"
},
"repository": {
"url": "git+https://github.com/makerkit/cli.git"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run build"
},
"author": "Giancarlo Buomprisco",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/fs-extra": "11.0.4",
"chalk": "5.6.2",
"commander": "14.0.3",
"dotenv": "17.3.1",
"execa": "9.6.1",
"fs-extra": "11.3.4",
"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.8.1",
"tsdown": "0.21.4",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}