Skip to content

Commit a7865b1

Browse files
Boshenclaude
andauthored
chore: add metadata to publishable package.json files (#895)
## Summary - Add `author`, `description`, `homepage`, `repository`, and `bugs` fields to all 4 publishable package.json files (`vite-plus`, `@voidzero-dev/vite-plus-core`, `@voidzero-dev/vite-plus-prompts`, `@voidzero-dev/vite-plus-test`) - These fields ensure packages display properly on npm 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b1102a1 commit a7865b1

4 files changed

Lines changed: 45 additions & 0 deletions

File tree

packages/cli/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
{
22
"name": "vite-plus",
33
"version": "0.0.0",
4+
"description": "The Unified Toolchain for the Web",
5+
"homepage": "https://viteplus.dev/guide",
6+
"bugs": {
7+
"url": "https://github.com/voidzero-dev/vite-plus/issues"
8+
},
49
"license": "MIT",
10+
"author": "VoidZero Inc.",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/voidzero-dev/vite-plus.git",
14+
"directory": "packages/cli"
15+
},
516
"bin": {
617
"oxfmt": "./bin/oxfmt",
718
"oxlint": "./bin/oxlint",

packages/core/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
{
22
"name": "@voidzero-dev/vite-plus-core",
33
"version": "0.0.0",
4+
"description": "The Unified Toolchain for the Web",
5+
"homepage": "https://viteplus.dev/guide",
6+
"bugs": {
7+
"url": "https://github.com/voidzero-dev/vite-plus/issues"
8+
},
49
"license": "MIT",
10+
"author": "VoidZero Inc.",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/voidzero-dev/vite-plus.git",
14+
"directory": "packages/core"
15+
},
516
"files": [
617
"dist"
718
],

packages/prompts/package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
{
22
"name": "@voidzero-dev/vite-plus-prompts",
33
"version": "0.0.0",
4+
"description": "The Unified Toolchain for the Web",
5+
"homepage": "https://viteplus.dev/guide",
6+
"bugs": {
7+
"url": "https://github.com/voidzero-dev/vite-plus/issues"
8+
},
9+
"license": "MIT",
10+
"author": "VoidZero Inc.",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/voidzero-dev/vite-plus.git",
14+
"directory": "packages/prompts"
15+
},
416
"files": [
517
"dist"
618
],

packages/test/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
{
22
"name": "@voidzero-dev/vite-plus-test",
33
"version": "0.0.0",
4+
"description": "The Unified Toolchain for the Web",
5+
"homepage": "https://viteplus.dev/guide",
6+
"bugs": {
7+
"url": "https://github.com/voidzero-dev/vite-plus/issues"
8+
},
49
"license": "MIT",
10+
"author": "VoidZero Inc.",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/voidzero-dev/vite-plus.git",
14+
"directory": "packages/test"
15+
},
516
"files": [
617
"*.cjs",
718
"*.cts",

0 commit comments

Comments
 (0)