Skip to content

Commit 69ce07a

Browse files
committed
Add metadata and publishConfig to package.json files
Added description, repository, and publishConfig fields to both @objectdocs/cli and @objectdocs/site package.json files to improve package metadata and set public access for publishing.
1 parent 2d1af2c commit 69ce07a

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

packages/cli/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
22
"name": "@objectdocs/cli",
33
"version": "0.2.2",
4+
"description": "ObjectDocs CLI",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/steedos/objectdocs.git",
8+
"directory": "packages/cli"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
413
"type": "module",
514
"bin": {
615
"objectdocs": "./bin/cli.mjs"

packages/site/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
22
"name": "@objectdocs/site",
33
"version": "0.2.2",
4+
"description": "ObjectDocs Site Template",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/steedos/objectdocs.git",
8+
"directory": "packages/site"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
413
"scripts": {
514
"dev": "next dev",
615
"build": "next build",

0 commit comments

Comments
 (0)