BetterFrame/server/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2026-05-09 23:09:13 +00:00
{
"name": "@betterframe/server",
"version": "0.1.0",
"private": true,
"description": "BetterFrame backend — BSB v9 service plugins.",
"license": "AGPL-3.0-only OR Commercial",
"type": "module",
"files": [
"lib/**/*",
"README.md",
"bsb-plugin.json",
"bsb-tests.json"
],
"scripts": {
2026-05-09 23:46:11 +00:00
"build": "cross-env NODE_OPTIONS=\"--import tsx\" bsb-plugin-cli build",
2026-05-09 23:09:13 +00:00
"clean": "bsb-plugin-cli clean",
"start": "bsb-plugin-cli start",
2026-05-09 23:46:11 +00:00
"dev": "cross-env NODE_OPTIONS=\"--import tsx\" bsb-plugin-cli dev",
2026-05-09 23:09:13 +00:00
"test": "bsb-plugin-cli test",
"schemas:export": "node --enable-source-maps lib/scripts/export-schemas.js"
},
"bsb": {},
"dependencies": {
"@anyvali/js": "^0.2.0",
"@bsb/base": "^9.1.11",
"@types/ws": "^8.18.1",
2026-05-09 23:09:13 +00:00
"argon2": "^0.44.0",
"h3": "^2.0.1-rc.22",
"jsx-htmx": "^2.0.2",
"onvif": "^0.8.1",
"otpauth": "^9.5.1",
"ws": "^8.20.0"
2026-05-09 23:09:13 +00:00
},
"devDependencies": {
"@types/node": "^25.0.0",
2026-05-09 23:46:11 +00:00
"tsx": "^4.21.0",
2026-05-09 23:09:13 +00:00
"typescript": "^6.0.3"
},
"peerDependencies": {
"@bsb/base": "^9.1.11"
}
}