-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
{
"name": "@docker/node-sdk",
"author": "Docker Inc.",
"description": "TypeScript SDK for Docker API",
"keywords": [
"docker",
"moby"
],
"version": "0.0.17",
"homepage": "https://github.com/docker/node-sdk",
"bugs": {
"url": "https://github.com/docker/node-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/docker/node-sdk"
},
"type": "module",
"license": "Apache-2.0",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.cjs"
}
},
"files": [
"dist",
"lib"
],
"scripts": {
"generate": "openapi-generator-cli generate -i swagger.yaml -c openapi-config.yaml -o lib && npm run format.types",
"build": "npm run generate && tsdown",
"test": "node --import tsx --experimental-test-coverage --test 'test/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"lint": "oxlint --type-aware",
"format": "prettier --write .",
"format.types": "prettier --write lib/types",
"format.check": "prettier --check ."
},
"dependencies": {
"ssh2": "^1.16.0",
"tar-stream": "^3.1.4",
"undici": "^6.22.0"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.23.4",
"@types/node": "^24.5.2",
"@types/ssh2": "^1.15.5",
"@types/tar-stream": "^3.1.4",
"oxlint": "^1.16.0",
"oxlint-tsgolint": "^0.2.0",
"prettier": "^3.6.2",
"tsdown": "^0.15.6",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"packageManager": "npm@10.9.3"
}