Skip to content

Commit

Permalink
chore: fix invalid package files with npm pkg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Oct 24, 2023
1 parent 2080d82 commit 4d0474c
Show file tree
Hide file tree
Showing 13 changed files with 56 additions and 15 deletions.
9 changes: 7 additions & 2 deletions distributions/nuxt-start/package.json
Expand Up @@ -17,10 +17,15 @@
"vuejs"
],
"homepage": "https://github.com/nuxt/nuxt.js#readme",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/nuxt-start.js",
"bin": "bin/nuxt-start.js",
"bin": {
"nuxt-start": "bin/nuxt-start.js"
},
"files": [
"bin",
"dist"
Expand Down
7 changes: 5 additions & 2 deletions distributions/nuxt/package.json
Expand Up @@ -16,11 +16,14 @@
"vue.js",
"vuejs"
],
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/nuxt.js",
"bin": {
"nuxt": "./bin/nuxt.js"
"nuxt": "bin/nuxt.js"
},
"files": [
"bin",
Expand Down
5 changes: 4 additions & 1 deletion packages/babel-preset-app/package.json
Expand Up @@ -2,7 +2,10 @@
"name": "@nuxt/babel-preset-app",
"version": "2.17.2",
"description": "babel-preset-app for nuxt",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"author": "Evan You",
"contributors": [
Expand Down
5 changes: 4 additions & 1 deletion packages/builder/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/builder",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/builder.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion packages/cli/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/cli",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/cli.js",
"bin": {
Expand Down
5 changes: 4 additions & 1 deletion packages/core/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/core",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/core.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion packages/generator/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/generator",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/generator.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion packages/server/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/server",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/server.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion packages/types/package.json
Expand Up @@ -2,7 +2,10 @@
"name": "@nuxt/types",
"version": "2.17.2",
"description": "Nuxt types",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
Expand Down
5 changes: 4 additions & 1 deletion packages/utils/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/utils",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/utils.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion packages/vue-app/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/vue-app",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/vue-app.js",
"typings": "index.d.ts",
Expand Down
5 changes: 4 additions & 1 deletion packages/vue-renderer/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/vue-renderer",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/vue-renderer.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion packages/webpack/package.json
@@ -1,7 +1,10 @@
{
"name": "@nuxt/webpack",
"version": "2.17.2",
"repository": "nuxt/nuxt.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"license": "MIT",
"main": "dist/webpack.js",
"files": [
Expand Down

0 comments on commit 4d0474c

Please sign in to comment.