UNPKG

next-navigation-progress

Version:

A customizable navigation progress bar for Next.js apps with React 19 support

77 lines (76 loc) 2.14 kB
{ "name": "next-navigation-progress", "version": "0.3.0", "description": "A customizable navigation progress bar for Next.js apps with React 19 support", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "prepublishOnly": "npm run build", "test": "vitest", "test:run": "vitest run", "test:coverage": "vitest --coverage", "test:ui": "vitest --ui", "release": "./scripts/release.sh", "release:patch": "npm run release -- patch", "release:minor": "npm run release -- minor", "release:major": "npm run release -- major", "demo:build": "npm run build && cd example && npm run build", "demo:serve": "cd example && npx serve out" }, "keywords": [ "next", "nextjs", "navigation", "progress", "loading", "react", "progress-bar", "navigation-progress" ], "author": "", "license": "MIT", "homepage": "https://thu-san.github.io/next-navigation-progress/top", "repository": { "type": "git", "url": "https://github.com/thu-san/next-navigation-progress" }, "peerDependencies": { "next": ">=15.0.0", "react": ">=19.0.0", "react-dom": ">=19.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-typescript": "^11.1.6", "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", "@vitejs/plugin-react": "^4.5.2", "@vitest/coverage-v8": "^3.2.3", "@vitest/ui": "^3.2.3", "happy-dom": "^18.0.1", "jsdom": "^26.1.0", "next": "^15.3.3", "react": "^19.0.0", "react-dom": "^19.0.0", "rollup": "^4.9.6", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-peer-deps-external": "^2.2.4", "tslib": "^2.6.2", "typescript": "^5.3.3", "vitest": "^3.2.3" }, "engines": { "node": ">=18.0.0" } }