Skip to content

Commit

Permalink
chore: fix repository fields in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Nov 8, 2023
1 parent 2832f01 commit 54529c1
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 9 deletions.
8 changes: 6 additions & 2 deletions package.json
@@ -1,7 +1,10 @@
{
"name": "nuxt-framework",
"private": true,
"repository": "nuxt/nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.git"
},
"license": "MIT",
"type": "module",
"scripts": {
Expand Down Expand Up @@ -81,5 +84,6 @@
"packageManager": "pnpm@8.10.2",
"engines": {
"node": "^14.18.0 || >=16.10.0"
}
},
"version": ""
}
5 changes: 4 additions & 1 deletion packages/kit/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/kit",
"version": "3.8.1",
"repository": "nuxt/nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.git"
},
"description": "Toolkit for authoring modules and interacting with Nuxt",
"license": "MIT",
"type": "module",
Expand Down
9 changes: 6 additions & 3 deletions packages/nuxt/package.json
@@ -1,14 +1,17 @@
{
"name": "nuxt",
"version": "3.8.1",
"repository": "nuxt/nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.git"
},
"description": "Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.",
"license": "MIT",
"type": "module",
"types": "./types.d.ts",
"bin": {
"nuxi": "./bin/nuxt.mjs",
"nuxt": "./bin/nuxt.mjs"
"nuxi": "bin/nuxt.mjs",
"nuxt": "bin/nuxt.mjs"
},
"exports": {
".": {
Expand Down
5 changes: 4 additions & 1 deletion packages/schema/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/schema",
"version": "3.8.1",
"repository": "nuxt/nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.git"
},
"description": "Nuxt types and default configuration",
"license": "MIT",
"type": "module",
Expand Down
5 changes: 4 additions & 1 deletion packages/vite/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/vite-builder",
"version": "3.8.1",
"repository": "nuxt/nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.git"
},
"description": "Vite bundler for Nuxt",
"license": "MIT",
"type": "module",
Expand Down
5 changes: 4 additions & 1 deletion packages/webpack/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/webpack-builder",
"version": "3.8.1",
"repository": "nuxt/nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.git"
},
"description": "Webpack bundler for Nuxt",
"license": "MIT",
"type": "module",
Expand Down

0 comments on commit 54529c1

Please sign in to comment.