mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
119 lines
2.9 KiB
JSON
119 lines
2.9 KiB
JSON
{
|
|
"name": "@refinedev/nextjs-router",
|
|
"version": "6.1.0",
|
|
"private": false,
|
|
"description": "refine Next.js router provider. refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/refinedev/refine.git",
|
|
"directory": "packages/nextjs-router"
|
|
},
|
|
"license": "MIT",
|
|
"author": "refine",
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./app": {
|
|
"import": {
|
|
"types": "./dist/app/index.d.mts",
|
|
"default": "./dist/app.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/app/index.d.cts",
|
|
"default": "./dist/app.cjs"
|
|
}
|
|
},
|
|
"./pages": {
|
|
"import": {
|
|
"types": "./dist/pages/index.d.mts",
|
|
"default": "./dist/pages.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/pages/index.d.cts",
|
|
"default": "./dist/pages.cjs"
|
|
}
|
|
},
|
|
"./parse-table-params": {
|
|
"import": {
|
|
"types": "./dist/common/parse-table-params.d.mts",
|
|
"default": "./dist/parse-table-params.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/common/parse-table-params.d.cts",
|
|
"default": "./dist/parse-table-params.cjs"
|
|
}
|
|
}
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.mjs",
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"dist/index.d.ts"
|
|
],
|
|
"app": [
|
|
"dist/app/index.d.ts"
|
|
],
|
|
"pages": [
|
|
"dist/pages/index.d.ts"
|
|
],
|
|
"parse-table-params": [
|
|
"dist/common/parse-table-params.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"attw": "attw --pack .",
|
|
"build": "tsup && node ../shared/generate-declarations.js",
|
|
"dev": "tsup --watch",
|
|
"prepare": "pnpm build",
|
|
"publint": "publint --strict=true --level=suggestion",
|
|
"test": "jest --passWithNoTests --runInBand",
|
|
"types": "node ../shared/generate-declarations.js"
|
|
},
|
|
"dependencies": {
|
|
"qs": "^6.10.1",
|
|
"warn-once": "^0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@esbuild-plugins/node-resolve": "^0.1.4",
|
|
"@refinedev/core": "^4.54.0",
|
|
"@types/qs": "^6.9.7",
|
|
"jest": "^29.3.1",
|
|
"jest-environment-jsdom": "^29.3.1",
|
|
"next": "^14.1.0",
|
|
"ts-jest": "^29.1.2",
|
|
"tslib": "^2.6.2",
|
|
"tsup": "^6.7.0",
|
|
"typescript": "^5.4.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@refinedev/core": "^4.46.1",
|
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
"@types/react-dom": "^17.0.0 || ^18.0.0",
|
|
"next": "*",
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|