client/packages/ttp/package.json

31 lines
764 B
JSON

{
"name": "@tensamin/ttp",
"private": true,
"version": "0.0.0",
"type": "module",
"exports": {
"./core": "./src/core.ts",
"./context": "./src/context.tsx",
"./send": "./src/send.ts",
"./values": "./src/values.ts"
},
"scripts": {
"format": "bunx prettier --write .",
"lint": "eslint src --ext .ts,.tsx",
"test": "bun test",
"build": "bun run test && tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@tanstack/react-router": "^1.0.0",
"@tensamin/crypto": "workspace:*",
"@tensamin/storage": "workspace:*",
"@tensamin/shared": "workspace:*",
"@tensamin/ui": "*",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"eslint": "^10.0.3"
}
}