Files
ToolsPCastApi-TS/package.json
Alexander Zinn 6ef0b5cf38 fix: remove unused code
* Update version to 2025.0.3, and remove unused code
* Upgrade chai to 5.3.1
* Streamline HTTP request method usage
2025-08-18 19:04:03 -04:00

42 lines
1.3 KiB
JSON

{
"name": "@techniker-me/pcast-api",
"version": "2025.0.3",
"module": "src/index.ts",
"type": "module",
"scripts": {
"format": "prettier --write ./",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"build": "bun run build:node && bun run build:browser && bun run build:types",
"ci-build": "bun run build:node && bun run build:browser && bun run build:types",
"build:node": "bun build src/index.ts --outdir dist/node --target node --format esm --minify --production",
"build:browser": "bun build src/index.ts --outdir dist/browser --target browser --format esm --minify --production",
"build:types": "tsc --outDir dist/types",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/bun": "latest",
"chai": "5.3.1",
"chai-as-promised": "8.0.1",
"mocha": "11.7.1",
"prettier": "3.6.2",
"typescript": "5.9.2"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/node/index.js",
"default": "./dist/node/index.js"
},
"./browser": "./dist/browser/index.js"
},
"publishConfig": {
"registry": "https://registry-node.techniker.me"
},
"dependencies": {
"@types/node": "24.3.0",
"phenix-edge-auth": "1.2.7"
}
}