Skip to content

Commit

Permalink
chore: fix package.json repository + metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Nov 7, 2023
1 parent 3b84956 commit c1ccf36
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"private": true,
"version": "3.0.0-rc.1",
"repository": "nuxt/bridge",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/bridge.git"
},
"license": "MIT",
"scripts": {
"build": "FORCE_COLOR=1 pnpm --filter './packages/**' prepack",
Expand Down
5 changes: 4 additions & 1 deletion packages/bridge-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "@nuxt/bridge-schema",
"version": "3.0.0-rc.3",
"repository": "nuxt/bridge",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/bridge.git"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
Expand Down
7 changes: 5 additions & 2 deletions packages/bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "@nuxt/bridge",
"version": "3.0.0-rc.3",
"repository": "nuxt/bridge",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/bridge.git"
},
"license": "MIT",
"type": "module",
"main": "./module.cjs",
Expand All @@ -13,7 +16,7 @@
"dist"
],
"bin": {
"nuxt2": "./bin/nuxt2.cjs"
"nuxt2": "bin/nuxt2.cjs"
},
"scripts": {
"build": "pnpm prepack",
Expand Down

0 comments on commit c1ccf36

Please sign in to comment.