-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.44 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.44 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@objectstack/cli",
"version": "6.5.2",
"description": "Command Line Interface for ObjectStack Protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"objectstack": "./bin/run.js",
"os": "./bin/run.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"lint": "eslint src"
},
"keywords": [
"objectstack",
"cli",
"oclif",
"compiler",
"scaffold"
],
"type": "module",
"author": "Steedos",
"license": "Apache-2.0",
"oclif": {
"bin": "os",
"dirname": "objectstack",
"commands": {
"strategy": "pattern",
"target": "./dist/commands",
"glob": "**/*.js"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " "
},
"dependencies": {
"@ai-sdk/gateway": "^3.0.120",
"@object-ui/console": "^6.0.4",
"@object-ui/studio": "^6.0.4",
"@objectstack/client": "workspace:*",
"@objectstack/core": "workspace:*",
"@objectstack/driver-memory": "workspace:^",
"@objectstack/driver-mongodb": "workspace:^",
"@objectstack/driver-sql": "workspace:^",
"@objectstack/driver-sqlite-wasm": "workspace:^",
"@objectstack/driver-turso": "workspace:^",
"@objectstack/objectql": "workspace:^",
"@objectstack/observability": "workspace:^",
"@objectstack/plugin-approvals": "workspace:*",
"@objectstack/plugin-audit": "workspace:*",
"@objectstack/plugin-auth": "workspace:*",
"@objectstack/plugin-email": "workspace:*",
"@objectstack/plugin-hono-server": "workspace:*",
"@objectstack/plugin-mcp-server": "workspace:*",
"@objectstack/plugin-reports": "workspace:*",
"@objectstack/plugin-security": "workspace:*",
"@objectstack/plugin-sharing": "workspace:*",
"@objectstack/plugin-webhooks": "workspace:*",
"@objectstack/rest": "workspace:*",
"@objectstack/runtime": "workspace:^",
"@objectstack/service-ai": "workspace:*",
"@objectstack/service-analytics": "workspace:*",
"@objectstack/service-automation": "workspace:*",
"@objectstack/service-cache": "workspace:*",
"@objectstack/service-feed": "workspace:*",
"@objectstack/service-job": "workspace:*",
"@objectstack/service-package": "workspace:*",
"@objectstack/service-queue": "workspace:*",
"@objectstack/service-realtime": "workspace:*",
"@objectstack/service-settings": "workspace:*",
"@objectstack/service-storage": "workspace:*",
"@objectstack/spec": "workspace:*",
"@oclif/core": "^4.11.4",
"bundle-require": "^5.1.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"dotenv-flow": "^4.1.0",
"esbuild": "^0.28.0",
"ts-morph": "^28.0.0",
"tsx": "^4.22.3",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"peerDependencies": {
"@objectstack/core": "workspace:^"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.49",
"@oclif/plugin-plugins": "^5.4.69",
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/framework.git",
"directory": "packages/cli"
},
"homepage": "https://objectstack.ai/docs",
"bugs": "https://github.com/objectstack-ai/framework/issues",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18.0.0"
}
}