* feat: new proxy package * chore: update nx workspace * chore: remove unused codegen lib * chore: add swc-node as build dependencies * chore: remove unused demo-app-e2e app * chore: reorganize demo apps * feat: working cross-engine proxy * chore: update docs * fix: readme file export * chore: update nextjs lib * chore: keep nextjs code
45 lines
793 B
JSON
45 lines
793 B
JSON
{
|
|
"name": "@fal-ai/serverless-proxy",
|
|
"version": "0.3.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/fal-ai/serverless-js.git",
|
|
"directory": "libs/proxy"
|
|
},
|
|
"keywords": [
|
|
"fal",
|
|
"serverless",
|
|
"client",
|
|
"next",
|
|
"nextjs",
|
|
"express",
|
|
"proxy"
|
|
],
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./express": "./src/express.js",
|
|
"./nextjs": "./src/nextjs.js"
|
|
},
|
|
"peerDependencies": {
|
|
"express": "^4.0.0",
|
|
"next": "^13.0.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"express": {
|
|
"optional": true
|
|
},
|
|
"next": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|