-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 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
{
"name": "@objectstack/cli",
"version": "4.0.3",
"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.95",
"@objectstack/client": "workspace:*",
"@objectstack/core": "workspace:*",
"@objectstack/driver-memory": "workspace:^",
"@objectstack/objectql": "workspace:^",
"@objectstack/plugin-hono-server": "workspace:*",
"@objectstack/plugin-setup": "workspace:*",
"@objectstack/rest": "workspace:*",
"@objectstack/runtime": "workspace:^",
"@objectstack/service-ai": "workspace:*",
"@objectstack/spec": "workspace:*",
"@oclif/core": "^4.10.5",
"bundle-require": "^5.1.0",
"chalk": "^5.6.2",
"dotenv-flow": "^4.1.0",
"tsx": "^4.21.0",
"yaml": "^2.4.1",
"zod": "^4.3.6"
},
"peerDependencies": {
"@objectstack/core": "workspace:^"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.44",
"@oclif/plugin-plugins": "^5.4.60",
"@types/node": "^25.6.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}