-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "@contextvm/ctxcn",
"version": "1.1.0",
"description": "A command-line utility inspired by shadcn that streamlines the integration of ContextVM (CVM) servers into your TypeScript projects",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"ctxcn": "dist/index.js"
},
"scripts": {
"build": "bun run tsc",
"dev": "bun run index.ts",
"format": "prettier --write .",
"prepublishOnly": "bun run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build && bun publish"
},
"keywords": [
"contextvm",
"cvm",
"mcp",
"cli",
"typescript",
"code-generation"
],
"author": "Contextvm-org",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/bun": "latest",
"@types/node": "^20.19.24",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@contextvm/sdk": "^0.1.38",
"json-schema-to-typescript": "^15.0.4"
}
}