-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mcmd",
"description": "Meta framework for building CLI tools",
"version": "0.1.4",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"bin": "./bin/cli.mjs",
"types": "./dist/index.d.mts",
"files": [
"bin/**/*",
"dist/**/*"
],
"scripts": {
"build": "bun run build:cli && bun run build:code && bun run copy",
"prepublishOnly": "bun run build",
"build:cli": "bun run ./cli/build.ts",
"test:cli": "bun run ./cli/.mcmd/cli.ts",
"build:code": "tsdown",
"build:watch": "tsdown --watch",
"copy": "cp ./src/base.json ./dist/",
"test": "bun run ./bin/cli.mjs",
"type-check": "tsc --noEmit"
},
"exports": {
"./package.json": "./package.json",
"./base.json": "./dist/base.json",
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./engine": {
"types": "./dist/engine.d.mts",
"import": "./dist/engine.mjs",
"require": "./dist/engine.cjs"
},
"./type": {
"types": "./dist/type.d.mts",
"import": "./dist/type.mjs",
"require": "./dist/type.cjs"
}
},
"dependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "20.17.24",
"@types/prompts": "^2.4.9",
"@types/yargs-parser": "^21.0.3",
"chalk": "^5.4.1",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"prompts": "^2.4.2",
"unimport": "^5.0.1",
"unrouting": "^0.1.7",
"yargs-parser": "^22.0.0",
"zod-validation-error": "^3.5.2",
"zodcli": "^0.0.4"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"skills": "^1.5.12",
"tsdown": "^0.21.10",
"typescript": "5.6.3",
"zod": "^3.25.67"
},
"peerDependencies": {
"tsdown": "^0.21.10",
"zod": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajatsandeepsen/mcmd.git"
},
"bugs": {
"url": "https://github.com/rajatsandeepsen/mcmd/issues"
},
"keywords": [
"cli",
"zod",
"meta",
"framework",
"router",
"file-based",
"folder-based"
]
}