dhd-control-api
Version:
Typescript library for the DHD Control API
59 lines • 1.63 kB
JSON
{
"name": "dhd-control-api",
"version": "0.4.0",
"description": "Typescript library for the DHD Control API",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"dhd",
"audio",
"control",
"api",
"ecp"
],
"homepage": "https://github.com/bitebroadcast/dhd-control-api",
"bugs": {
"url": "https://github.com/bitebroadcast/dhd-control-api/issues"
},
"author": "Rein van Haaren <rein.vanhaaren@bitebroadcast.com> (https://www.bitebroadcast.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bitebroadcast/dhd-control-api.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"dependencies": {
"debug": "^4.3.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/debug": "^4.1.12",
"@types/node": "^22.9.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"scripts": {
"build": "tsup",
"ci": "pnpm run build && pnpm run check-format && pnpm run check-exports && pnpm run lint",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "tsc",
"local-release": "changeset version && changeset publish",
"release": "pnpm run build && changeset publish"
}
}