UNPKG

remix-seo-plus

Version:

Collection of SEO utilities like sitemap, robots.txt, etc. for a Remix application. A fork of https://github.com/balavishnuvj/remix-seo with some added bug fixes and features.

69 lines (68 loc) 1.77 kB
{ "name": "remix-seo-plus", "version": "2.0.2", "description": "Collection of SEO utilities like sitemap, robots.txt, etc. for a Remix application. A fork of https://github.com/balavishnuvj/remix-seo with some added bug fixes and features.", "main": "./build/index.js", "scripts": { "prepare": "tsc --project tsconfig.json", "start": "tsc -w --project tsconfig.json", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "github:ejoc/remix-seo" }, "keywords": [ "remix", "sitemap", "sitemap.xml", "seo", "robot.txt" ], "author": "Balavishnu V J <hello@balavishnuvj.com> (https://balavishnuvj.com)", "contributors": [ { "name": "Leo Singer", "email": "leo.p.singer@nasa.gov" } ], "license": "MIT", "devDependencies": { "@nasa-gcn/eslint-config-gitignore": "^0.0.1", "@types/lodash": "^4.14.178", "@types/node": "^17.0.13", "@typescript-eslint/eslint-plugin": "^7.0.2", "@typescript-eslint/parser": "^7.0.2", "eslint": "^8.56.0", "typescript": "^4.5.5" }, "peerDependencies": { "@remix-run/react": "^1.0.0 || ^2.0.0", "@remix-run/server-runtime": "^1.0.0 || ^2.0.0" }, "dependencies": { "lodash": "^4.17.21" }, "types": "./build/index.d.ts", "eslintConfig": { "env": { "browser": true, "es2021": true, "node": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "@nasa-gcn/eslint-config-gitignore" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "rules": {} } }