Skip to content

Commit 4d0474c

Browse files
committedOct 24, 2023
chore: fix invalid package files with npm pkg fix
1 parent 2080d82 commit 4d0474c

File tree

13 files changed

+56
-15
lines changed

13 files changed

+56
-15
lines changed
 

‎distributions/nuxt-start/package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,15 @@
1717
"vuejs"
1818
],
1919
"homepage": "https://github.com/nuxt/nuxt.js#readme",
20-
"repository": "nuxt/nuxt.js",
20+
"repository": {
21+
"type": "git",
22+
"url": "git+https://github.com/nuxt/nuxt.js.git"
23+
},
2124
"license": "MIT",
2225
"main": "dist/nuxt-start.js",
23-
"bin": "bin/nuxt-start.js",
26+
"bin": {
27+
"nuxt-start": "bin/nuxt-start.js"
28+
},
2429
"files": [
2530
"bin",
2631
"dist"

‎distributions/nuxt/package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@
1616
"vue.js",
1717
"vuejs"
1818
],
19-
"repository": "nuxt/nuxt.js",
19+
"repository": {
20+
"type": "git",
21+
"url": "git+https://github.com/nuxt/nuxt.js.git"
22+
},
2023
"license": "MIT",
2124
"main": "dist/nuxt.js",
2225
"bin": {
23-
"nuxt": "./bin/nuxt.js"
26+
"nuxt": "bin/nuxt.js"
2427
},
2528
"files": [
2629
"bin",

‎packages/babel-preset-app/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"name": "@nuxt/babel-preset-app",
33
"version": "2.17.2",
44
"description": "babel-preset-app for nuxt",
5-
"repository": "nuxt/nuxt.js",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/nuxt/nuxt.js.git"
8+
},
69
"license": "MIT",
710
"author": "Evan You",
811
"contributors": [

‎packages/builder/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/builder",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/builder.js",
710
"files": [

‎packages/cli/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/cli",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/cli.js",
710
"bin": {

‎packages/core/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/core",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/core.js",
710
"files": [

‎packages/generator/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/generator",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/generator.js",
710
"files": [

‎packages/server/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/server",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/server.js",
710
"files": [

‎packages/types/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"name": "@nuxt/types",
33
"version": "2.17.2",
44
"description": "Nuxt types",
5-
"repository": "nuxt/nuxt.js",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/nuxt/nuxt.js.git"
8+
},
69
"license": "MIT",
710
"main": "index.js",
811
"types": "index.d.ts",

‎packages/utils/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/utils",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/utils.js",
710
"files": [

‎packages/vue-app/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/vue-app",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/vue-app.js",
710
"typings": "index.d.ts",

‎packages/vue-renderer/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/vue-renderer",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/vue-renderer.js",
710
"files": [

‎packages/webpack/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "@nuxt/webpack",
33
"version": "2.17.2",
4-
"repository": "nuxt/nuxt.js",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/nuxt/nuxt.js.git"
7+
},
58
"license": "MIT",
69
"main": "dist/webpack.js",
710
"files": [

0 commit comments

Comments
 (0)
Please sign in to comment.