forked from leonitousconforti/the-moby-effect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "docker-api-types",
"version": "1.51.6",
"description": "TypeScript types for Docker Engine API",
"keywords": [
"docker",
"moby"
],
"homepage": "https://github.com/xuxucode/docker-api-types",
"bugs": {
"url": "https://github.com/xuxucode/docker-api-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuxucode/docker-api-types.git"
},
"license": "GPL-3.0-only",
"author": "Xu Xu",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts"
},
"./effect": {
"types": "./dist/effect.d.ts"
}
},
"files": [
"dist/**/*.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc -b tsconfig.build.json",
"prepublishOnly": "npm run build; true"
},
"dependencies": {
"@effect/platform": "^0.93.5",
"effect": "^3.19.8",
"effect-schemas": "^0.0.9"
},
"devDependencies": {
"@types/ssh2": "^1.15.5",
"typescript": "^5.9.3"
},
"patchedDependencies": {
"effect-schemas@0.0.9": "patches/effect-schemas@0.0.9.patch"
}
}