-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 996 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 996 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
35
36
{
"name": "@selvo/cli",
"version": "0.1.0",
"description": "Selvo CLI — manage your help center from the terminal",
"license": "MIT",
"author": "Selvo <hello@selvo.co> (https://selvo.co)",
"homepage": "https://github.com/selvoapp/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/selvoapp/cli.git"
},
"bugs": {
"url": "https://github.com/selvoapp/cli/issues"
},
"keywords": ["selvo", "help-center", "cli", "knowledge-base", "api", "saas"],
"bin": { "selvo": "./dist/cli.cjs" },
"files": ["dist/cli.cjs"],
"type": "module",
"scripts": {
"build": "node build.mjs",
"dev": "tsx src/index.ts"
},
"engines": { "node": ">=20" },
"dependencies": {
"commander": "^14.0.0",
"@commander-js/extra-typings": "^14.0.0",
"@clack/prompts": "^0.9.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"esbuild": "^0.25.0",
"@types/node": "^22.0.0"
}
}