UNPKG

fontline

Version:

Font management system for Next.js applications

70 lines (69 loc) 1.51 kB
{ "name": "fontline", "version": "1.0.2", "description": "Font management system for Next.js applications", "author": "Nischal Timalsina", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/nischaltimalsina/fontline" }, "keywords": [ "next", "nextjs", "font", "manager", "typescript", "react", "font-manager", "next-font", "next13", "next14" ], "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE", "CONTRIBUTING.md" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "rm -rf dist", "typecheck": "tsc --noEmit", "lint": "eslint src/", "prepublishOnly": "npm run build", "test": "jest" }, "peerDependencies": { "next": ">=13.0.0", "react": ">=18.0.0", "react-dom": ">=18.0.0" }, "devDependencies": { "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "husky": "^8.0.0", "jest": "^29.0.0", "prettier": "^3.0.0", "tsup": "^8.0.0", "typescript": "^5.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }