hetznercloud/package.json

68 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2024-01-29 12:55:55 +00:00
{
"name": "@apiclient.xyz/hetznercloud",
2024-06-15 14:21:46 +00:00
"version": "1.2.0",
2024-01-29 12:55:55 +00:00
"private": false,
2024-06-15 13:31:55 +00:00
"description": "An unofficial TypeScript API client for the Hetzner Cloud API providing easy methods to manage servers, volumes, and firewalls.",
2024-01-29 12:55:55 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)",
"updateAPI": "openapi-typescript https://docs.hetzner.cloud/spec.json --output ts/openapi.spec.ts"
2024-01-29 12:55:55 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
2024-02-17 20:55:25 +00:00
"@push.rocks/qenv": "^6.0.5",
2024-01-29 12:55:55 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-06-15 13:31:55 +00:00
"@types/node": "^20.11.22",
"openapi-typescript": "^6.7.6"
2024-01-29 12:55:55 +00:00
},
2024-01-29 20:08:05 +00:00
"dependencies": {
"@push.rocks/smartrequest": "^2.0.21",
2024-02-17 20:55:25 +00:00
"@tsclass/tsclass": "^4.0.52"
2024-01-29 20:08:05 +00:00
},
2024-01-29 12:55:55 +00:00
"repository": {
"type": "git",
"url": "git+https://gitlab.com/apiclient.xyz/hetznercloud.git"
},
"bugs": {
"url": "https://gitlab.com/apiclient.xyz/hetznercloud/issues"
},
"homepage": "https://gitlab.com/apiclient.xyz/hetznercloud#readme",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-06-15 13:31:55 +00:00
],
"keywords": [
"Hetzner",
"Cloud",
"API",
"TypeScript",
"Client",
"Servers",
"Volumes",
"Firewalls",
"Automation",
"DevOps",
"Cloud Infrastructure"
2024-01-29 12:55:55 +00:00
]
2024-06-15 13:31:55 +00:00
}