-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 811 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 811 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": "@versatly/vworkz-cli",
"version": "1.0.0",
"description": "CLI for vworkz creative agency workflow platform",
"main": "dist/index.js",
"bin": {
"vworkz": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": ["vworkz", "cli", "agency", "workflow", "ai", "agent"],
"author": "Versatly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Versatly/vworkz-cli"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^4.1.2",
"conf": "^10.2.0",
"ora": "^5.4.1",
"inquirer": "^8.2.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/inquirer": "^8.2.6",
"typescript": "^5.0.0",
"ts-node": "^10.9.0"
}
}