forked from GYF0311/CMAP_coding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 964 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 964 Bytes
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
{
"name": "cmap",
"version": "0.1.0",
"description": "Repo-local project memory map CLI for AI coding",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GYF0311/CMAP_coding.git"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"bin": {
"cmap": "dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --dts",
"test": "vitest run",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"smoke": "pnpm build && node scripts/smoke-test.mjs",
"prepack": "pnpm build && pnpm test && pnpm typecheck && pnpm smoke"
},
"dependencies": {
"commander": "14.0.3",
"gray-matter": "4.0.3",
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "25.6.2",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"packageManager": "pnpm@10.32.1"
}