@gasket/plugin-nextjs
Version:
Adds Next support to your application
96 lines • 2.59 kB
JSON
{
"name": "@gasket/plugin-nextjs",
"version": "7.7.4",
"description": "Adds Next support to your application",
"type": "module",
"types": "lib/index.d.ts",
"files": [
"generator",
"docs",
"lib",
"cjs",
"EXAMPLES.md"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./cjs/index.cjs",
"default": "./cjs/index.cjs"
},
"./prompts": {
"import": "./lib/prompt.js",
"require": "./cjs/prompt.cjs"
},
"./package.json": "./package.json"
},
"repository": "godaddy/gasket.git",
"publishConfig": {
"access": "public"
},
"keywords": [
"gasket",
"next",
"nextjs",
"plugin"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"bugs": "https://github.com/godaddy/gasket/issues",
"homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-plugin-nextjs",
"dependencies": {
"fastify": "^4.29.1",
"@gasket/plugin-webpack": "^7.4.0"
},
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@types/express": "^4.17.23",
"@types/node": "^20.17.19",
"@types/react": "^19.0.12",
"@types/webpack": "^5.28.5",
"lodash.merge": "^4.6.2",
"next": "^16.1.6",
"nodemon": "^3.1.9",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"vitest": "^3.2.0",
"@gasket/assets": "^7.5.1",
"@gasket/cjs": "^7.1.1",
"@gasket/core": "^7.7.3",
"@gasket/intl": "^7.5.3",
"@gasket/nextjs": "^7.6.8",
"@gasket/plugin-elastic-apm": "^7.5.1",
"@gasket/plugin-express": "^7.5.1",
"@gasket/plugin-fastify": "^7.5.3",
"@gasket/plugin-https": "^7.4.1",
"@gasket/plugin-intl": "^7.6.4",
"@gasket/plugin-logger": "^7.4.0",
"@gasket/plugin-metadata": "^7.5.9",
"@gasket/plugin-service-worker": "^7.5.0",
"@gasket/plugin-workbox": "^7.4.0",
"@gasket/request": "^7.5.5",
"create-gasket-app": "^7.4.19"
},
"peerDependencies": {
"@gasket/plugin-webpack": "^7.4.0",
"react": ">=18",
"react-dom": ">=18"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"scripts": {
"build": "gasket-cjs ./lib && node scripts/fix-cjs-paths.js",
"build:watch": "pnpm run build --watch",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"posttest": "pnpm run lint && pnpm run typecheck",
"test": "vitest run --globals",
"test:coverage": "vitest run --globals --coverage",
"test:watch": "vitest --globals",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
}
}