forked from balavishnuvj/remix-seo
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@nasa-gcn/remix-seo",
"version": "2.0.1",
"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:nasa-gcn/remix-seo"
},
"keywords": [
"remix",
"sitemap",
"sitemap.xml",
"seo",
"robot.txt"
],
"author": "Balavishnu V J <[email protected]> (https://balavishnuvj.com)",
"contributors": [
{
"name": "Leo Singer",
"email": "[email protected]"
}
],
"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": {}
}
}