- package.json with React Native/Expo peer dependencies - Main index.ts with module exports for all platform services - Providers and hooks for auth, telemetry, feature flags, kill switch, broadcasts, surveys
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "@bytelyst/react-native-platform-sdk",
|
|
"version": "1.0.0",
|
|
"description": "React Native SDK for ByteLyst platform services",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./auth": {
|
|
"import": "./dist/auth.js",
|
|
"types": "./dist/auth.d.ts"
|
|
},
|
|
"./telemetry": {
|
|
"import": "./dist/telemetry.js",
|
|
"types": "./dist/telemetry.d.ts"
|
|
},
|
|
"./feature-flags": {
|
|
"import": "./dist/feature-flags.js",
|
|
"types": "./dist/feature-flags.d.ts"
|
|
},
|
|
"./kill-switch": {
|
|
"import": "./dist/kill-switch.js",
|
|
"types": "./dist/kill-switch.d.ts"
|
|
},
|
|
"./broadcasts": {
|
|
"import": "./dist/broadcasts.js",
|
|
"types": "./dist/broadcasts.d.ts"
|
|
},
|
|
"./surveys": {
|
|
"import": "./dist/surveys.js",
|
|
"types": "./dist/surveys.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"lint": "eslint src/**/*.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@bytelyst/api-client": "workspace:*",
|
|
"@bytelyst/auth": "workspace:*",
|
|
"@bytelyst/config": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18.0.0",
|
|
"react-native": ">=0.72.0",
|
|
"expo": ">=49.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-native": "^0.72.0",
|
|
"typescript": "^5.3.0",
|
|
"eslint": "^8.54.0"
|
|
},
|
|
"keywords": [
|
|
"react-native",
|
|
"bytelyst",
|
|
"platform",
|
|
"expo",
|
|
"mobile"
|
|
],
|
|
"license": "MIT"
|
|
}
|