smartacme/package.json

75 lines
2.0 KiB
JSON
Raw Normal View History

2016-11-01 17:27:57 +00:00
{
2023-07-10 00:41:58 +00:00
"name": "@push.rocks/smartacme",
2024-01-28 15:08:33 +00:00
"version": "4.0.8",
2018-08-12 18:58:59 +00:00
"private": false,
2024-04-14 15:18:13 +00:00
"description": "A TypeScript-based ACME client with an easy yet powerful interface for LetsEncrypt certificate management.",
2020-05-17 16:21:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-09-27 13:40:55 +00:00
"type": "module",
2016-11-01 17:27:57 +00:00
"scripts": {
2018-08-12 18:58:59 +00:00
"test": "(tstest test/)",
2023-07-21 16:49:18 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-11-01 17:27:57 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:11:35 +00:00
"url": "https://code.foss.global/push.rocks/smartacme.git"
2016-11-01 17:27:57 +00:00
},
"keywords": [
2024-04-14 15:18:13 +00:00
"ACME",
"LetsEncrypt",
2016-11-01 17:27:57 +00:00
"TypeScript",
2024-04-14 15:18:13 +00:00
"certificate management",
"DNS challenges",
"SSL/TLS",
"secure communication",
"domain validation",
"automation",
"crypto"
2016-11-01 17:27:57 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2017-04-28 16:59:43 +00:00
"url": "https://gitlab.com/umbrellazone/smartacme/issues"
2016-11-01 17:27:57 +00:00
},
2024-05-29 12:11:35 +00:00
"homepage": "https://code.foss.global/push.rocks/smartacme",
2016-11-01 17:27:57 +00:00
"dependencies": {
2024-01-28 01:50:41 +00:00
"@api.global/typedserver": "^3.0.20",
"@push.rocks/lik": "^6.0.12",
"@push.rocks/smartdata": "^5.0.33",
2023-07-21 16:49:18 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartdns": "^5.0.2",
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3",
2024-01-28 01:50:41 +00:00
"@push.rocks/smartrequest": "^2.0.21",
"@push.rocks/smartstring": "^4.0.13",
"@push.rocks/smarttime": "^4.0.6",
"@push.rocks/smartunique": "^3.0.6",
"@tsclass/tsclass": "^4.0.46",
2022-09-27 13:40:55 +00:00
"acme-client": "^4.2.5"
2016-11-01 17:27:57 +00:00
},
"devDependencies": {
2023-07-21 16:49:18 +00:00
"@apiclient.xyz/cloudflare": "^6.0.3",
2024-01-28 01:50:41 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/qenv": "^6.0.4",
"@push.rocks/tapbundle": "^5.0.15",
2024-01-28 15:08:32 +00:00
"@types/node": "^20.11.9"
2020-02-10 11:15:47 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-17 16:21:25 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-10 11:15:47 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-12 16:36:06 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-02-10 11:15:47 +00:00
]
2024-04-14 15:18:13 +00:00
}