hermes-kanban-miniapp/packages/bridge/package.json

33 lines
678 B
JSON

{
"name": "@kanban/bridge",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist"
},
"dependencies": {
"@kanban/contracts": "workspace:*",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0",
"tsx": "^4.16.0"
}
}