UNPKG

@netlify/remix-adapter

Version:
84 lines 1.93 kB
{ "name": "@netlify/remix-adapter", "version": "3.0.0", "description": "Remix Adapter for Netlify Functions", "type": "commonjs", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } }, "./plugin": { "require": { "types": "./dist/plugin.d.ts", "default": "./dist/plugin.js" }, "import": { "types": "./dist/plugin.d.mts", "default": "./dist/plugin.mjs" } } }, "files": [ "dist/**/*", "LICENSE", "README.md", "plugin.js", "plugin.d.ts", "CHANGELOG.md", "LICENSE.md", "README.md" ], "repository": { "type": "git", "url": "https://github.com/netlify/remix-compute", "directory": "packages/remix-adapter" }, "keywords": [ "remix", "netlify" ], "license": "MIT", "bugs": { "url": "https://github.com/netlify/remix-compute/issues" }, "homepage": "https://github.com/netlify/remix-compute#readme", "dependencies": { "@remix-run/node": "^2.16.4", "isbot": "^5.0.0" }, "devDependencies": { "@netlify/functions": "^5.1.2", "@remix-run/dev": "^2.16.4", "@remix-run/react": "^2.16.4", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "react": "^18.2.0", "react-dom": "^18.2.0", "tsup": "^8.0.2", "vite": "^6.2.5" }, "peerDependencies": { "vite": ">=5.0.0" }, "engines": { "node": ">=20.6.1" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup-node src/index.ts src/plugin.ts --format esm,cjs --dts --target node20 --clean", "build:watch": "pnpm run build --watch", "publint": "publint --strict" } }