-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.75 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
86
{
"name": "svelte-sitemap",
"version": "2.6.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": "jest",
"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": "jest --collect-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.2",
"minimist": "^1.2.8",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/minimist": "^1.2.5",
"@types/node": "22.4.1",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"npm-prepare-dist": "^0.4.1",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.9",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"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"
}