-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 794 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 794 Bytes
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
{
"name": "@objectdocs/cli",
"version": "0.2.12",
"description": "ObjectDocs CLI",
"repository": {
"type": "git",
"url": "https://github.com/steedos/objectdocs.git",
"directory": "packages/cli"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"objectdocs": "./bin/cli.mjs"
},
"scripts": {
"dev": "node ./bin/cli.mjs dev ../../content/docs",
"build": "node ./bin/cli.mjs build ../../content/docs",
"translate": "node ./bin/cli.mjs translate",
"test": "vitest run"
},
"dependencies": {
"@objectdocs/site": "workspace:*",
"@types/node": "^25.0.8",
"cac": "^6.7.14",
"dotenv": "^16.4.5",
"openai": "^6.18.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}