-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.72 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.72 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
{
"name": "@opensaas/stack-cli",
"version": "0.19.1",
"description": "CLI tools for OpenSaas Stack",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./generator": {
"types": "./dist/generator/index.d.ts",
"default": "./dist/generator/index.js"
},
"./generator/prisma": {
"types": "./dist/generator/prisma.d.ts",
"default": "./dist/generator/prisma.js"
}
},
"bin": {
"opensaas": "./bin/opensaas.js"
},
"files": [
"dist",
"bin",
"plugin"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"clean": "rm -rf .turbo dist tsconfig.tsbuildinfo"
},
"keywords": [
"opensaas",
"cli",
"nextjs",
"prisma"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OpenSaasAU/stack.git",
"directory": "packages/cli"
},
"homepage": "https://stack.opensaas.au",
"bugs": {
"url": "https://github.com/OpenSaasAU/stack/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"@opensaas/stack-core": "workspace:*",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.2",
"fs-extra": "^11.3.2",
"glob": "^13.0.0",
"jiti": "^2.6.1",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.11.0",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}