UNPKG

pathpida

Version:

TypeScript friendly pages and static path generator for Next.js

58 lines (57 loc) 1.63 kB
{ "name": "pathpida", "version": "0.25.0", "description": "TypeScript friendly pages and static path generator for Next.js", "author": "Solufa", "license": "MIT", "bin": "bin/index.js", "scripts": { "dev": "npm run build && ts-node projects/build.ts", "build": "npm run rimraf && tsc -p tsconfig.build.json", "rimraf": "node -e \"require('fs').existsSync('dist') && require('fs').rmSync('dist', { recursive: true, force: true })\"", "lint": "eslint . && prettier --check \"./**/*.ts\"", "lint:fix": "eslint . --fix && prettier --write \"./**/*.ts\"", "test": "vitest run", "typecheck": "tsc --noEmit" }, "homepage": "https://github.com/aspida/pathpida#readme", "repository": { "type": "git", "url": "git+https://github.com/aspida/pathpida.git" }, "bugs": { "url": "https://github.com/aspida/pathpida/issues" }, "files": [ "dist" ], "keywords": [ "typescript", "nextjs", "pages", "path" ], "dependencies": { "chokidar": "^4.0.3", "ignore": "^7.0.3", "minimist": "^1.2.8" }, "devDependencies": { "@types/eslint-config-prettier": "^6.11.3", "@types/minimist": "^1.2.2", "@types/react": "^18.3.18", "@types/react-dom": "^18.3.5", "eslint": "^9.20.0", "eslint-config-flat-gitignore": "^2.0.0", "eslint-config-prettier": "^10.0.1", "globals": "^15.14.0", "jiti": "^2.4.2", "next": "^15.1.6", "prettier": "^3.4.2", "prettier-plugin-organize-imports": "^4.1.0", "ts-node": "^10.9.2", "typescript": "^5.7.3", "typescript-eslint": "^8.23.0", "vitest": "^3.0.5" } }