-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.22 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
87
88
89
90
91
92
93
94
95
96
{
"name": "sitemap-ts",
"type": "module",
"version": "1.8.0",
"packageManager": "pnpm@9.1.2",
"description": "Sitemap generator for TypeScript projects",
"author": "JB Aubrée <jb.aubree@protonmail.com>",
"license": "MIT",
"homepage": "https://github.com/jbaubree/sitemap-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jbaubree/sitemap-ts.git"
},
"bugs": {
"url": "https://github.com/antfu/sitemap-ts/issues"
},
"keywords": [
"Sitemap",
"Typescript",
"Generator",
"Robots",
"Sitemap.xml",
"Robots.txt"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest --coverage",
"typecheck": "tsc --noEmit",
"up": "taze major -r -I"
},
"dependencies": {
"@antfu/utils": "^0.7.8",
"fast-glob": "^3.3.2",
"sitemap": "^8.0.0",
"xml-formatter": "^3.6.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.1",
"@antfu/ni": "^0.21.12",
"@babel/types": "^7.24.5",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"bumpp": "^9.4.1",
"eslint": "^9.3.0",
"eslint-plugin-format": "^0.1.1",
"esno": "^4.7.0",
"lint-staged": "^15.2.4",
"pnpm": "^9.1.2",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
],
"./src/*.ts": [
"tsc --skipLibCheck --esModuleInterop --noEmit"
]
}
}