Files
hetznercloud/package.json
T

68 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2024-01-29 13:55:55 +01:00
{
"name": "@apiclient.xyz/hetznercloud",
2026-05-07 23:31:22 +00:00
"version": "1.2.1",
2024-01-29 13:55:55 +01:00
"private": false,
2024-06-15 15:31:55 +02:00
"description": "An unofficial TypeScript API client for the Hetzner Cloud API providing easy methods to manage servers, volumes, and firewalls.",
2024-01-29 13:55:55 +01: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)",
"updateOpenapi": "openapi-typescript https://docs.hetzner.cloud/spec.json --output ts/openapi.spec.ts"
2024-01-29 13:55:55 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.1",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/qenv": "^6.1.4",
"@types/node": "^25.6.2",
"openapi-typescript": "^7.13.0",
"typescript": "^5.9.3"
2024-01-29 13:55:55 +01:00
},
2024-01-29 21:08:05 +01:00
"dependencies": {
"@push.rocks/smartrequest": "^5.0.3",
"@tsclass/tsclass": "^9.5.1"
2024-01-29 21:08:05 +01:00
},
2024-01-29 13:55:55 +01: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",
".smartconfig.json",
2024-01-29 13:55:55 +01:00
"readme.md"
2024-06-15 15:31:55 +02:00
],
"keywords": [
"Hetzner",
"Cloud",
"API",
"TypeScript",
"Client",
"Servers",
"Volumes",
"Firewalls",
"Automation",
"DevOps",
"Cloud Infrastructure"
2024-01-29 13:55:55 +01:00
]
2024-06-15 15:31:55 +02:00
}