-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.16 KB
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
{
"name": "static-sitemap-cli",
"version": "2.2.8",
"description": "CLI to generate XML sitemaps for static sites from local filesystem",
"author": "Jason Lee <jason@zerodevx.com>",
"type": "module",
"exports": "./src/index.js",
"bin": {
"static-sitemap-cli": "./src/cli.js",
"sscli": "./src/cli.js"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint",
"test": "prettier --check . && eslint && ava && npx publint"
},
"dependencies": {
"commander": "^15.0.0",
"cosmiconfig": "^9.0.2",
"fast-glob": "^3.3.3",
"htmlparser2": "^12.0.0",
"js2xmlparser": "^5.0.0",
"micromatch": "^4.0.8",
"tiny-async-pool": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"ava": "^8.0.1",
"eslint": "^10.6.0",
"execa": "^9.6.1",
"globals": "^17.7.0",
"prettier": "^3.9.4"
},
"files": [
"src/"
],
"license": "ISC",
"homepage": "https://npmjs.com/package/static-sitemap-cli",
"repository": "github:zerodevx/static-sitemap-cli",
"keywords": [
"sscli",
"sitemap",
"static-site",
"sitemap-generator",
"filesystem",
"xml",
"txt",
"cli"
]
}