-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.83 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
{
"name": "@nitrostack/cli",
"version": "1.0.15",
"description": "CLI for NitroStack - Create and manage MCP server projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nitrostack-cli": "dist/index.js",
"@nitrostack/cli": "dist/index.js",
"nitrostack-pack": "dist/pack/standalone.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist/",
"templates/",
"README.md",
"assets"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js dist/pack/standalone.js",
"dev": "tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"nitrostack",
"cli",
"mcp",
"create",
"scaffold",
"generator"
],
"author": "Nitrostack Inc <hello@nitrostack.ai>",
"license": "Apache-2.0",
"dependencies": {
"archiver": "^7.0.1",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"esbuild": "^0.24.0",
"fs-extra": "^11.3.2",
"inquirer": "^9.3.7",
"open": "^10.1.0",
"ora": "^8.1.1",
"posthog-node": "^5.21.2"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/nitrocloudofficial/nitrostack.git",
"directory": "typescript/packages/cli"
},
"bugs": {
"url": "https://github.com/nitrocloudofficial/nitrostack/issues"
},
"homepage": "https://nitrostack.ai"
}