-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.21 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
{
"name": "@dokploy/cli",
"description": "A CLI to manage dokploy server remotely",
"version": "0.29.0",
"author": "Mauricio Siu",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Dokploy/cli/blob/master/LICENSE"
}
],
"publishConfig": {
"access": "public"
},
"bin": {
"dokploy": "./dist/index.js"
},
"bugs": "https://github.com/Dokploy/cli/issues",
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"commander": "^13.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@types/node": "^18",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/dist"
],
"homepage": "https://github.com/Dokploy/cli",
"keywords": [
"dokploy",
"cli"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"repository": "Dokploy/cli",
"scripts": {
"build": "tsc -b",
"generate": "tsx scripts/generate.ts",
"prebuild": "pnpm run generate",
"dev": "tsx src/index.ts",
"lint": "biome check --write .",
"test": "vitest run"
},
"types": "dist/index.d.ts",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}