-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.64 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.64 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "cloudypad",
"version": "0.45.2",
"description": "",
"scripts": {
"test": "mocha",
"build": "rm -rf dist/ && tsc -p tsconfig.build.json && pnpm run copy-ansible",
"copy-ansible": "cp -r ansible dist/ansible"
},
"main": "./src/index.js",
"types": "./src/index.d.ts",
"bin": {
"cloudypad": "./src/cli/main.js"
},
"author": "Pierre Beucher <pierre@crafteo.io>",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/dockerode": "^3.3.44",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20.14.11",
"@types/sinon": "^17.0.4",
"@types/sshpk": "^1.17.4",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.18.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"mocha": "^11.7.4",
"sinon": "^19.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@aws-sdk/client-account": "^3.616.0",
"@aws-sdk/client-ec2": "^3.614.0",
"@aws-sdk/client-s3": "^3.614.0",
"@aws-sdk/client-service-quotas": "^3.726.0",
"@aws-sdk/client-sts": "^3.730.0",
"@aws-sdk/credential-providers": "^3.616.0",
"@aws-sdk/s3-request-presigner": "^3.614.0",
"@azure/arm-compute": "^22.0.0",
"@azure/arm-network": "^33.3.0",
"@azure/arm-quota": "^1.0.0",
"@azure/arm-subscriptions": "^5.1.0",
"@azure/identity": "^4.4.1",
"@commander-js/extra-typings": "^13.0.0",
"@google-cloud/compute": "^4.7.0",
"@google-cloud/resource-manager": "^5.3.0",
"@inquirer/core": "^11.1.7",
"@inquirer/prompts": "^8.3.2",
"@linode/api-v4": "^0.149.0",
"@pulumi/aws": "^6.45.0",
"@pulumi/azure-native": "^2.52.0",
"@pulumi/gcp": "^8.0.0",
"@pulumi/linode": "^4.29.0",
"@pulumi/pulumi": "^3.125.0",
"@pulumi/random": "^4.18.3",
"@pulumiverse/scaleway": "^1.26.0",
"@scaleway/configuration-loader": "1.0.5",
"@scaleway/sdk": "2.74.0",
"@smithy/config-resolver": "^4.4.11",
"@smithy/node-config-provider": "^4.3.12",
"axios": "^1.7.2",
"commander": "^13.0.0",
"dockerode": "^4.0.0",
"google-auth-library": "^10.6.1",
"lodash": "^4.17.21",
"node-ssh": "^13.2.0",
"posthog-node": "^4.3.2",
"smol-toml": "^1.3.0",
"sshpk": "^1.18.0",
"tmp": "^0.2.3",
"tslog": "^4.9.3",
"type-fest": "^4.22.1",
"uuid": "^11.0.3",
"yaml": "^2.7.1",
"zod": "^3.24.1"
},
"overrides": {
"node-fetch": {
"whatwg-url": "^14.1.0"
}
}
}