-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "typesense-sitemap",
"version": "2.0.0",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adviise/typesense-sitemap.git"
},
"files": [
"dist/*"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"prebuild": "ts-node ./cleanDist",
"build": "tsc",
"test": "vitest run && eslint .",
"lint": "eslint ."
},
"dependencies": {
"cli-progress": "^3.12.0",
"fs-extra": "^11.1.1",
"jsonlines": "^0.1.1",
"typesense": "^1.5.4",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/cli-progress": "^3.11.0",
"@types/fs-extra": "^11.0.1",
"@types/jsonlines": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/coverage-c8": "^0.33.0",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"fast-xml-parser": "^4.2.5",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"types": "./dist/index.d.ts",
"description": "This is a node library allowing you to generate sitemaps from a Typesense collection. It is inspired by [algolia-sitemap](https://github.com/algolia/algolia-sitemap).",
"bugs": {
"url": "https://github.com/adviise/typesense-sitemap/issues"
},
"homepage": "https://github.com/adviise/typesense-sitemap#readme",
"author": ""
}