forked from fedeya/remix-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.89 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
69
70
71
{
"name": "remix-sitemap",
"version": "2.1.0",
"private": false,
"bin": {
"remix-sitemap": "./dist/bin/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"lint": "eslint ./src --ext .ts",
"format": "prettier --write ./src",
"dev": "tsc -w"
},
"keywords": [
"remix",
"sitemap",
"seo",
"sitemap.xml",
"sitemap-generator"
],
"author": {
"name": "Federico Minaya",
"email": "[email protected]",
"url": "https://fedeminaya.com"
},
"license": "MIT",
"devDependencies": {
"@remix-run/dev": "^1.15.0",
"@remix-run/server-runtime": "^1.15.0",
"@types/node": "^18.15.2",
"@types/require-from-string": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitest/coverage-c8": "^0.29.8",
"@vitest/ui": "^0.29.8",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^4.9.5",
"vitest": "^0.29.8"
},
"peerDependencies": {
"@remix-run/server-runtime": "^1.15.0"
},
"dependencies": {
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"esbuild": "^0.17.11",
"fast-xml-parser": "^4.1.3",
"isomorphic-fetch": "^3.0.0",
"require-from-string": "^2.0.2",
"ufo": "^1.1.1"
},
"types": "./dist/index.d.ts",
"description": "Sitemap generator for Remix applications",
"repository": {
"type": "git",
"url": "git+https://github.com/fedeya/remix-sitemap.git"
},
"bugs": {
"url": "https://github.com/fedeya/remix-sitemap/issues"
},
"homepage": "https://github.com/fedeya/remix-sitemap#readme"
}