-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.73 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "svelte-sitemap",
"version": "2.7.0",
"description": "Small helper which scans your Svelte routes folder and generates static sitemap.xml",
"main": "./dist/index.js",
"author": "BART! <[email protected]>",
"bin": {
"svelte-sitemap": "index.js"
},
"scripts": {
"start": "tsc -w",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "npm-prepare-dist -s postinstall",
"tsc": "tsc",
"demo": "tsx demo",
"lint": "eslint ./src/**/**/* --fix",
"test": "vitest",
"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 && cd dist && npm publish --tag next",
"publish:beta": "yarn && yarn build && yarn test && 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",
"minimist": "^1.2.8",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/glob": "^8.1.0",
"@types/minimist": "^1.2.5",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "2.1.8",
"eslint": "^9.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-prepare-dist": "^0.5.0",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"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"
},
"license": "MIT"
}