This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.14 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 3.14 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "blogforge",
"version": "0.1.14",
"description": "A powerful CLI tool for managing Nuxt Content v3 blogs",
"type": "module",
"main": "dist/index.js",
"bin": {
"blogforge": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"lint": "biome lint ./src",
"lint:fix": "biome lint --apply ./src",
"format": "biome format ./src",
"format:fix": "biome format --write ./src",
"prepare": "husky",
"release": "standard-version",
"commit": "cz",
"workflow:migrate": "bash scripts/migrate-to-pr-workflow.sh",
"workflow:help": "echo 'See docs/DEVELOPMENT_WORKFLOW.md for complete guide'",
"pr:ready": "npm run lint && npm run build && echo 'PR ready! ✅'",
"sync:upstream": "git fetch upstream && git checkout master && git merge upstream/master && git push origin master"
},
"keywords": [
"nuxt",
"content",
"blog",
"cli",
"markdown",
"nuxt,content,blog,cli,markdown,commandline"
],
"author": "",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"citty": "^0.1.6",
"cli-table3": "^0.6.5",
"diff": "^8.0.1",
"figlet": "^1.8.1",
"fs-extra": "^11.3.0",
"fuse.js": "^7.1.0",
"ink": "^5.2.1",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.3.1",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"sharp": "^0.34.1",
"tsx": "^4.19.4",
"zod": "^3.24.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.18",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"semver": "^7.7.2",
"standard-version": "^9.5.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard-version": {
"standard-version": {
"commitAll": true,
"scripts": {
"postchangelog": "echo 'CHANGELOG.md updated'"
},
"skip": {
"tag": false
},
"releaseCommitMessageFormat": "chore(release): {{currentTag}} [skip ci]",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styling"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
}
]
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"biome check --write"
]
},
"homepage": "https://github.com/lord007tn/BlogForge",
"bugs": {
"url": "https://github.com/lord007tn/BlogForge/issues"
}
}