-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "astro-sitemap",
"version": "1.0.0",
"description": "Generate a sitemap for Astro with more control",
"keywords": [
"astro-integration",
"astro",
"astro-component",
"seo",
"sitemap",
"sitemap.xml",
"i18n"
],
"author": {
"name": "Oleksii Tymoshenko"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alextim/astro-lib.git",
"directory": "packages/astro-sitemap"
},
"homepage": "https://github.com/alextim/astro-lib/tree/main/packages/astro-sitemap#readme",
"bugs": "https://github.com/alextim/astro-lib/issues",
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "at-scripts create-pkg-name && at-scripts build && tsc -p tsconfig.build.json && at-scripts copy index.d.ts",
"typecheck": "tsc --noEmit --pretty",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test:pub": "pnpm publish --dry-run --no-git-checks"
},
"dependencies": {
"minimatch": "^9.0.3",
"sitemap": "^7.1.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/node": "^20.5.9",
"astro": "^3.0.11",
"at-scripts": "workspace:*",
"c8": "^8.0.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}