appwarden
Version:
CLI tool to manage Appwarden monitors and deployments
57 lines (56 loc) • 1.52 kB
JSON
{
"name": "appwarden",
"version": "1.9.0",
"private": false,
"description": "CLI tool to manage Appwarden monitors and deployments",
"keywords": [
"appwarden",
"cli",
"monitoring",
"web3"
],
"license": "MIT",
"author": "Appwarden",
"bin": {
"appwarden": "build/index.mjs"
},
"files": [
"build/index.mjs",
"build/domain-configuration-file.json"
],
"sideEffects": false,
"main": "./build/index.mjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"release": "NODE_ENV=production pnpm build && semantic-release",
"build": "pnpm build:tsup && pnpm build:generate-json-schema",
"build:tsup": "tsup",
"build:generate-json-schema": "tsx ../../scripts/generate-json-schema.ts > build/domain-configuration-file.json",
"appwarden": "node ./build/index.mjs",
"check:types": "tsc --noEmit",
"test:unit": "vitest run --config vitest.config.unit.ts",
"test:integration": "vitest run --config vitest.config.integration.ts"
},
"dependencies": {
"@layered/dns-records": "^2.1.0",
"commander": "^12.1.0",
"dotenv": "^16.6.1",
"ipaddr.js": "^2.3.0",
"parse-domain": "^8.3.0",
"undici": "^8.1.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.17.0",
"@semantic-release/changelog": "^6.0.3",
"semantic-release": "^25.0.3",
"tsup": "^8.4.0",
"tsx": "^4.22.4",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
}
}