learning_ai_common_plat/packages/feedback-client/package.json

32 lines
626 B
JSON

{
"name": "@bytelyst/feedback-client",
"version": "0.1.0",
"description": "TypeScript client for submitting user feedback with screenshots",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run"
},
"dependencies": {
"@bytelyst/api-client": "workspace:*"
},
"peerDependencies": {
"zod": "^3.22.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}