@digilogiclabs/saas-factory-ai
Version:
Next.js 15 Compatible AI Integration Platform - Drop-in ready with server/client separation for seamless React Server Components support.
109 lines • 2.91 kB
JSON
{
"name": "@digilogiclabs/saas-factory-ai",
"version": "4.0.4",
"description": "Next.js 15 Compatible AI Integration Platform - Drop-in ready with server/client separation for seamless React Server Components support.",
"main": "dist/index.js",
"types": "./types.d.ts",
"exports": {
".": {
"types": "./types.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.mjs",
"require": "./dist/client/index.js"
}
},
"scripts": {
"build": "tsup src/nextjs15-index.ts --format cjs,esm --no-dts && mv dist/nextjs15-index.js dist/index.js && mv dist/nextjs15-index.mjs dist/index.mjs",
"dev": "tsup src/index.ts src/react/index.ts src/react-native.ts --format cjs,esm --dts --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run build",
"publish:dry": "node scripts/publish.js --dry-run",
"publish:beta": "node scripts/publish.js --beta",
"publish:release": "node scripts/publish.js --yes"
},
"peerDependencies": {
"next": ">=15.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-native": ">=0.72.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"react": {
"optional": false
},
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"keywords": [
"ai",
"artificial-intelligence",
"openai",
"anthropic",
"gemini",
"veo3",
"react",
"react-native",
"nextjs",
"saas",
"sdk",
"chatbot",
"video-generation",
"fake-news",
"machine-learning",
"typescript"
],
"author": "DigiLogic Labs <hello@digilogiclabs.com>",
"license": "MIT",
"homepage": "https://github.com/digilogiclabs/saas-factory-ai#readme",
"repository": {
"type": "git",
"url": "https://github.com/digilogiclabs/saas-factory-ai.git",
"directory": "packages/sdk"
},
"bugs": {
"url": "https://github.com/digilogiclabs/saas-factory-ai/issues"
},
"dependencies": {
"zustand": "^4.4.4"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/jest-dom": "^6.1.4",
"@types/react": "^18.2.31",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"files": [
"dist",
"types.d.ts",
"!dist/**/*.css.map"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}