@router-cli/react-router
Version:
File based routing cli for react-router-dom. Types and components. see @router-cli/react-router-dev for the cli and plugins.
61 lines • 1.61 kB
JSON
{
"name": "@router-cli/react-router",
"author": "jjones315",
"license": "MIT",
"repository": "https://github.com/jjones315/router-cli.git",
"version": "0.1.6",
"description": "File based routing cli for react-router-dom. Types and components. see @router-cli/react-router-dev for the cli and plugins.",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"type-check": "tsc --noEmit"
},
"dependencies": {
"query-string": "^8.1.0",
"react-router-dom": "^6.14.2"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"keywords": [
"router",
"cli",
"file-routing",
"nextjs"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"typescript": "^5.1.6",
"vite": "^4.4.6",
"@babel/core": "^7.14.3",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0"
},
"files": [
"dist",
"src"
],
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"require": "./src/index.ts"
}
}
}