-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.22 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "svelte-sitemap",
"version": "3.0.1",
"type": "module",
"description": "Small helper which scans your Svelte routes folder and generates static sitemap.xml",
"author": "BART! <bart@bartweb.cz>",
"bin": "cli.js",
"scripts": {
"start": "tsc -w",
"build": "tsdown --config-loader unrun",
"demo": "tsx demo",
"lint": "eslint ./src/**/**/* --fix",
"test": "vitest --watch=false",
"test:outdir": "yarn outdir:prepare && OUT_DIR='public' yarn test && yarn outdir:revert",
"outdir:prepare": "mv build public",
"outdir:revert": "mv public build",
"test:coverage": "vitest run --coverage",
"postinstall": "cp -r ./src/build/ ./build",
"postversion": "git push && git push --follow-tags",
"publish:next": "yarn && yarn build && yarn test run && cd dist && npm publish --tag next",
"publish:beta": "yarn && yarn build && yarn test run && cd dist && npm publish --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \"",
"prepare": "husky"
},
"dependencies": {
"fast-glob": "^3.3.3",
"jiti": "^2.6.1",
"minimist": "^1.2.8",
"xmlbuilder2": "^4.0.3"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "4.1.0",
"eslint": "^10.0.3",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"rolldown-plugin-dist-package": "^1.0.0",
"tsdown": "^0.21.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"url": "git+https://github.com/bartholomej/svelte-sitemap.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/svelte-sitemap/issues"
},
"homepage": "https://github.com/bartholomej/svelte-sitemap#readme",
"keywords": [
"svelte",
"sveltekit",
"static",
"sitemap.xml",
"generator",
"typescript",
"build"
],
"engines": {
"node": ">= 14.17.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bartholomej"
},
{
"type": "ko_fi",
"url": "https://ko-fi.com/bartholomej"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/bartholomej"
},
{
"type": "paypal",
"url": "https://www.paypal.me/bartholomej"
},
{
"type": "thanks_dev",
"url": "https://thanks.dev/u/gh/bartholomej"
}
],
"license": "MIT",
"packageManager": "yarn@4.12.0",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js",
"./package.json": "./package.json"
}
}