-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 949 Bytes
/
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
{
"name": "vite-ssg-sitemap",
"type": "module",
"version": "0.8.1",
"packageManager": "[email protected]",
"description": "sitemap generator working with vite-ssg",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll",
"dev": "pnpm run build -- --watch",
"example:build": "pnpm -C example run build",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"release": "npx bumpp --commit --tag --push && npm publish",
"typecheck": "vue-tsc --noEmit",
"up": "taze major -r -I"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.1",
"@types/node": "^20.12.12",
"eslint": "^9.3.0",
"eslint-plugin-format": "^0.1.1",
"pkgroll": "^2.1.1",
"pnpm": "^9.1.2",
"sitemap-ts": "^1.8.0",
"taze": "^0.18.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vue-tsc": "^2.0.19"
}
}