-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "docker-engine-api",
"version": "1.51.6",
"description": "Simple Docker Engine REST API",
"keywords": [
"docker",
"moby"
],
"homepage": "https://github.com/xuxucode/docker-engine-api",
"bugs": {
"url": "https://github.com/xuxucode/docker-engine-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuxucode/docker-engine-api.git"
},
"author": "Xu Xu",
"license": "MIT",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts"
}
},
"files": [
"dist",
"src",
"!dist/*.test.*",
"!src/*.test.*"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"docker-api-types": "^1.51.6"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}