-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.74 KB
/
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
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
{
"name": "docker-client-ts",
"description": "Auto generated client for the Docker Engine API with a fluent interface and strong typings",
"version": "0.0.18",
"homepage": "https://github.com/manualpilot/docker-client-ts",
"repository": "github:manualpilot/docker-client-ts",
"keywords": [
"docker",
"client",
"typescript"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"lib",
"package.json",
"tsconfig.json",
"README.md",
"LICENSE"
],
"type": "module",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"prebuild": "rm -rf ./dist ./*.tsbuildinfo",
"build": "tsc --project tsconfig-build.json",
"postbuild": "tsc-alias --project tsconfig-build.json",
"format": "biome check --verbose --write --unsafe",
"pregenerate": "rm -rf ./lib",
"generate": "node ./generator/generator.mjs && node ./generator/compose.mjs",
"postgenerate": "pnpm run format",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"ix": "^7.0.0",
"rxjs": "^7.8.1",
"ssh2": "^1.16.0",
"undici": "^7.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@types/nunjucks": "^3.2.6",
"@types/ssh2": "^1.15.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"json-schema-to-typescript": "^15.0.3",
"json-schema-to-zod": "^2.4.1",
"nunjucks": "^3.2.4",
"semver": "^7.6.3",
"ts-jest": "^29.2.5",
"ts-to-zod": "^3.13.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"yaml": "^2.6.1"
}
}