@netlify/remix-adapter
Version:
Remix Adapter for Netlify Functions
88 lines • 2 kB
JSON
{
"name": "@netlify/remix-adapter",
"version": "2.6.1",
"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/vite/plugin.d.ts",
"default": "./dist/vite/plugin.js"
},
"import": {
"types": "./dist/vite/plugin.d.mts",
"default": "./dist/vite/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": "^3.0.0",
"@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"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup-node src/index.ts src/vite/plugin.ts --format esm,cjs --dts --target node16 --clean",
"build:watch": "pnpm run build --watch"
}
}