-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1012 Bytes
/
package.json
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
{
"name": "@cloud-cli/dx",
"version": "0.0.0",
"description": "Docker container management",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"prettier": "@cloud-cli/prettier-config",
"scripts": {
"test": "vitest",
"build": "rm -rf ./dist/* && tsc"
},
"keywords": ["cloudy"],
"license": "MIT",
"author": "Darlan Alves <[email protected]>",
"devDependencies": {
"@cloud-cli/prettier-config": "^1.0.0",
"@cloud-cli/typescript-config": "^1.0.1",
"@types/node": "^20.12.8",
"@vitest/coverage-v8": "^1.6.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cloud-cli/dx.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cloud-cli/exec": "^1.0.4",
"get-port": "^7.1.0"
},
"peerDependencies": {
"@cloud-cli/cli": "^2.0.0",
"@cloud-cli/env": "^1.0.0",
"@cloud-cli/dns": "^2.0.0",
"@cloud-cli/px": "^4.0.0"
}
}