-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.57 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
{
"name": "@objectstack/cli",
"version": "3.2.1",
"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": {
"@objectstack/core": "workspace:*",
"@objectstack/driver-memory": "workspace:^",
"@objectstack/objectql": "workspace:^",
"@objectstack/plugin-hono-server": "workspace:*",
"@objectstack/rest": "workspace:*",
"@objectstack/runtime": "workspace:^",
"@objectstack/spec": "workspace:*",
"@oclif/core": "^4.8.2",
"bundle-require": "^5.1.0",
"chalk": "^5.3.0",
"tsx": "^4.7.1",
"zod": "^4.3.6"
},
"peerDependencies": {
"@objectstack/core": "workspace:^"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.37",
"@oclif/plugin-plugins": "^5.4.56",
"@types/node": "^25.3.3",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}