@stacksjs/tlsx
Version:
A TLS/HTTPS library with automation.
76 lines (75 loc) • 1.56 kB
JSON
{
"name": "@stacksjs/tlsx",
"type": "module",
"version": "0.13.0",
"description": "A TLS/HTTPS library with automation.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/tlsx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/tlsx.git"
},
"bugs": {
"url": "https://github.com/stacksjs/tlsx/issues"
},
"keywords": [
"tls",
"https",
"ssl",
"security",
"https",
"cryptography",
"x509",
"keys",
"certificates",
"rootca",
"ca-bundle",
"development",
"environment",
"bun",
"stacks",
"typescript",
"javascript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/src/index.js"
}
},
"module": "./dist/src/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tlsx": "./dist/bin/cli.js"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"lint": "bunx --bun eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"prepublishOnly": "bun --bun run build",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"bunfig": "^0.15.6",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint . --fix"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"cac": "^6.7.14",
"consola": "^3.4.2"
}
}