cloudflare/package.json

71 lines
1.8 KiB
JSON
Raw Normal View History

2016-04-10 16:22:58 +00:00
{
2023-06-13 16:54:25 +00:00
"name": "@apiclient.xyz/cloudflare",
2024-06-16 23:36:40 +00:00
"version": "6.0.5",
"private": false,
2024-06-15 17:55:48 +00:00
"description": "A TypeScript client for managing Cloudflare accounts, zones, DNS records, and workers with ease.",
2020-06-10 05:15:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-09-27 17:23:20 +00:00
"type": "module",
2016-04-10 16:22:58 +00:00
"scripts": {
"test": "(tstest test/)",
2022-09-27 17:24:52 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2024-06-15 15:08:03 +00:00
"buildDocs": "tsdoc",
"updateOpenapi": "openapi-typescript https://raw.githubusercontent.com/cloudflare/api-schemas/main/openapi.yaml --output ts/openapi.spec.ts"
2016-04-10 16:22:58 +00:00
},
"repository": {
"type": "git",
2017-01-29 17:22:17 +00:00
"url": "git+https://gitlab.com/pushrocks/cflare.git"
2016-04-10 16:22:58 +00:00
},
"keywords": [
2024-06-15 17:55:48 +00:00
"Cloudflare",
"DNS management",
"zone management",
"worker management",
"TypeScript",
"API client",
"cloud infrastructure",
"automated DNS",
"CDN management",
"open source"
2016-04-10 16:22:58 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2017-01-29 17:22:17 +00:00
"url": "https://gitlab.com/pushrocks/cflare/issues"
2016-04-10 16:22:58 +00:00
},
2017-01-29 17:22:17 +00:00
"homepage": "https://gitlab.com/pushrocks/cflare#readme",
2016-04-27 00:20:27 +00:00
"dependencies": {
2024-06-15 15:08:03 +00:00
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartlog": "^3.0.2",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.15",
"@push.rocks/smartstring": "^4.0.5",
"@tsclass/tsclass": "^4.0.58",
"cloudflare": "^3.2.0"
2016-04-27 00:20:27 +00:00
},
"devDependencies": {
2024-06-15 15:08:03 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.42",
"@git.zone/tstest": "^1.0.74",
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^20.3.1",
"openapi-typescript": "^6.7.6"
2019-07-18 09:51:56 +00:00
},
"files": [
2020-02-09 17:36:29 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-10 05:34:47 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-09 17:36:29 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-18 09:51:56 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-01-22 20:46:26 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-07-18 09:51:56 +00:00
]
2024-06-16 23:36:40 +00:00
}