Files
Shade/package.json

27 lines
864 B
JSON
Raw Normal View History

{
"name": "shade",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"test": "bun test --recursive",
"test:core": "cd packages/shade-core && bun test",
"test:crypto": "cd packages/shade-crypto-web && bun test",
"test:proto": "cd packages/shade-proto && bun test",
"test:server": "cd packages/shade-server && bun test",
"test:transport": "cd packages/shade-transport && bun test",
"test:sdk": "cd packages/shade-sdk && bun test",
"test:cli": "cd packages/shade-cli && bun test",
"version": "bun run scripts/bump-version.ts",
"publish:dry": "DRY_RUN=1 bun run scripts/publish-all.ts",
"publish:all": "bun run scripts/publish-all.ts"
},
"devDependencies": {
"bun-types": "^1.3.11"
},
"dependencies": {
"@noble/curves": "^2.0.1",
2026-04-10 19:00:21 +02:00
"@noble/hashes": "^2.0.1",
"hono": "^4.12.12"
}
}