-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.1 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "typesense-sitemap",
"version": "3.0.0",
"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).",
"license": "MIT",
"packageManager": "pnpm@10.15.0",
"author": {
"name": "joshmossas",
"url": "https://github.com/joshmossas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adviise/typesense-sitemap.git"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run build",
"prebuild": "jiti ./cleanDist.ts",
"build": "tsc",
"test": "vitest run && eslint .",
"lint": "eslint .",
"format": "prettier --write ./src ./.prettierrc ./cleanDist.ts ./eslint.config.mts ./package.json ./pnpm-lock.yaml ./README.md ./tsconfig.json ./.vscode",
"format:check": "prettier --check ./src ./.prettierrc ./cleanDist.ts ./eslint.config.mts ./package.json ./pnpm-lock.yaml ./README.md ./tsconfig.json ./.vscode"
},
"dependencies": {
"cli-progress": "^3.12.0",
"dotenv": "^8.2.0",
"fs-extra": "^11.3.1",
"jsonlines": "^0.1.1",
"node-fetch": "^3.3.2",
"typesense": "^2.1.0",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@faker-js/faker": "^9.9.0",
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4",
"@types/jsonlines": "^0.1.5",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"fast-xml-parser": "^5.2.5",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vitest": "^3.2.4"
},
"bugs": {
"url": "https://github.com/adviise/typesense-sitemap/issues"
},
"homepage": "https://github.com/adviise/typesense-sitemap#readme"
}