-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "@jholtmeyer/docker-api-ts",
"version": "1.0.5",
"description": "Typescript API client for the Docker daemon",
"main": "dist/generated/index.js",
"types": "dist/generated/index.d.ts",
"type": "module",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.13.4",
"@types/node": "^20.14.9",
"typedoc": "^0.26.3",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"scripts": {
"test": "npm run build && vitest run --config dist/__tests__/vitest.config.js",
"build": "npx tsc -p tsconfig.json",
"generate:api": "npx @openapitools/openapi-generator-cli generate -i ./src/openapi_spec_v1.41.yaml -g typescript-axios -o ./src/generated -c ./src/config.yaml -t ./src/templates",
"generate:docs": "npx typedoc src/generated/index.ts",
"publish:npm": "npm publish --access public"
},
"keywords": [
"docker",
"api",
"client",
"typescript"
],
"author": "Julian Holtmeyer",
"files": [
"dist/generated"
],
"typedocOptions": {
"hostedBaseUrl": "https://jholtmeyer.github.io/docker-api-ts",
"navigation": {
"includeCategories": false,
"includeGroups": true,
"includeFolders": true
},
"categorizeByGroup": true
},
"repository": {
"type": "git",
"url": "https://github.com/jholtmeyer/docker-api-ts.git"
},
"bugs": {
"url": "https://github.com/jholtmeyer/docker-api-ts/issues"
},
"homepage": "https://jholtmeyer.github.io/docker-api-ts",
"engines": {
"node": ">=14.0.0"
},
"license": "MIT"
}