learning_ai_common_plat/packages/survey-client/package.json
saravanakumardb1 307b84c2a2 feat(packages): Phase 3.2 - Create @bytelyst/survey-client package
- package.json: ESM module config
- src/index.ts: Survey client factory with types, validation, offline cache
- tsconfig.json: TypeScript configuration

Includes offline response caching for resilience
2026-03-03 07:36:12 -08:00

22 lines
425 B
JSON

{
"name": "@bytelyst/survey-client",
"version": "0.1.0",
"type": "module",
"description": "Browser/React Native-safe survey client for platform-service",
"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"
}
}