-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 950 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
43
{
"name": "@galactiks/sitemap",
"version": "0.1.3",
"description": "A simple sitemap generator for Galactiks",
"author": "thegalactiks",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/thegalactiks/explorer/issues",
"homepage": "https://www.galactiks.com",
"repository": {
"type": "git",
"url": "https://github.com/thegalactiks/explorer.git",
"directory": "packages/sitemap"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build:ci": "tsc -p ./tsconfig.json"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"galactiks",
"sitemap",
"seo"
],
"dependencies": {
"date-fns": "3.5.0",
"sitemap": "7.1.1"
},
"devDependencies": {
"@galactiks/explorer": "workspace:^"
}
}