-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
37
38
39
40
41
42
{
"name": "@wromojs/sitemap",
"description": "Generate a sitemap for author": "wromo",
"version": "0.2.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "wromo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Wromo/wromo.git",
"directory": "packages/integrations/sitemap"
},
"keywords": [
"wromo-component",
"seo",
"sitemap"
],
"bugs": "https://github.com/Wromo/wromo/issues",
"homepage": "https://wromo.build",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "wromo-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "wromo-scripts build \"src/**/*.ts\"",
"dev": "wromo-scripts dev \"src/**/*.ts\"",
"test": "mocha --timeout 20000"
},
"dependencies": {
"sitemap": "^7.1.1",
"zod": "^3.17.3"
},
"devDependencies": {
"wromo": "workspace:*",
"wromo-scripts": "workspace:*"
}
}