-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mapify-cli",
"version": "2.0.0",
"description": "A CLI tool for generating `sitemap.xml` files for various frontend frameworks including Angular, React, and Vue. Automatically detects changes in project files to update the `lastmod` attribute and supports multiple build outputs.",
"private": false,
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"bin": {
"mapify-cli": "dist/cjs/bin/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:watch:cjs": "tsc --project tsconfig.cjs.json --watch",
"build:watch:esm": "tsc --project tsconfig.esm.json --watch",
"build:watch": "concurrently \"pnpm run build:watch:cjs\" \"pnpm run build:watch:esm\"",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm",
"prettier:check": "prettier --config .prettierrc --check src/**/*{.ts,.json}",
"prettier:fix": "prettier --config .prettierrc --write src/**/*{.ts,.json}"
},
"keywords": [
"mapify-cli",
"mapify",
"sitemap",
"sitemap-generator",
"sitemap.xml",
"cli",
"frontend",
"Angular",
"React",
"Vue",
"automation",
"build",
"web",
"SEO"
],
"author": {
"name": "Shiv Kumar",
"url": "https://shivkumar.me/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shiv-source/mapify-cli.git"
},
"bugs": {
"url": "https://github.com/shiv-source/mapify-cli/issues"
},
"homepage": "https://github.com/shiv-source/mapify-cli#readme",
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"simple-git": "^3.25.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.4.1",
"@types/yargs": "^17.0.33",
"concurrently": "^8.2.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
}
}