-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "@balavishnuvj/remix-seo",
"version": "1.0.1",
"description": "Collection of SEO utilities like sitemap, robots.txt, etc. for a Remix Application",
"main": "./build/index.js",
"private": false,
"scripts": {
"prepare": "tsc --project tsconfig.json",
"start": "tsc -w --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balavishnuvj/remix-seo.git"
},
"keywords": [
"remix",
"sitemap",
"sitemap.xml",
"seo",
"robot.txt"
],
"author": "Balavishnu V J <hello@balavishnuvj.com> (https://balavishnuvj.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/balavishnuvj/remix-seo/issues"
},
"homepage": "https://github.com/balavishnuvj/remix-seo#readme",
"devDependencies": {
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^17.0.13",
"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.isequal": "^4.5.0"
},
"types": "./build/index.d.ts"
}