Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit 259898c

Browse files
authored
Update package.json to include the repository (#1678)
1 parent 09fea5e commit 259898c

File tree

13 files changed

+65
-0
lines changed

13 files changed

+65
-0
lines changed

core/docz-core/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"package.json",
1212
"README.md"
1313
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/doczjs/docz.git",
17+
"directory": "core/docz-core"
18+
},
1419
"scripts": {
1520
"build": "yarn cross-env NODE_ENV=production rollup -c",
1621
"dev": "yarn cross-env NODE_ENV=development yarn build -w",

core/docz-rollup/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
"src/",
88
"package.json"
99
],
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/doczjs/docz.git",
13+
"directory": "core/docz-rollup"
14+
},
1015
"scripts": {
1116
"fix": "yarn lint --fix",
1217
"lint": "eslint . --ext .js",

core/docz-utils/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"package.json",
1212
"README.md"
1313
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/doczjs/docz.git",
17+
"directory": "core/docz-utils"
18+
},
1419
"scripts": {
1520
"dev": "cross-env NODE_ENV=development yarn build -w",
1621
"build": "trash lib && cross-env NODE_ENV=production rollup -c",

core/docz/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
"package.json",
1616
"README.md"
1717
],
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/doczjs/docz.git",
21+
"directory": "core/docz"
22+
},
1823
"scripts": {
1924
"dev": "cross-env NODE_ENV=development yarn build -w",
2025
"build": "cross-env NODE_ENV=production rollup -c",

core/gatsby-theme-docz/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"gatsby-theme",
1010
"docz"
1111
],
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/doczjs/docz.git",
15+
"directory": "core/gatsby-theme-docz"
16+
},
1217
"scripts": {
1318
"dev": "echo noop",
1419
"fix": "yarn lint --fix",

core/rehype-docz/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"package.json",
1212
"README.md"
1313
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/doczjs/docz.git",
17+
"directory": "core/rehype-docz"
18+
},
1419
"scripts": {
1520
"dev": "cross-env NODE_ENV=development yarn build -w",
1621
"build": "cross-env NODE_ENV=production rollup -c",

core/remark-docz/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"package.json",
1212
"README.md"
1313
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/doczjs/docz.git",
17+
"directory": "core/remark-docz"
18+
},
1419
"scripts": {
1520
"dev": "cross-env NODE_ENV=development yarn build -w",
1621
"build": "cross-env NODE_ENV=production rollup -c",

examples/basic/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "docz-example-basic",
33
"version": "2.0.0",
44
"license": "MIT",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/doczjs/docz.git",
8+
"directory": "examples/basic"
9+
},
510
"scripts": {
611
"dev": "docz dev",
712
"build": "docz build",

other-packages/babel-plugin-export-metadata/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
"src/",
1919
"package.json"
2020
],
21+
"repository": {
22+
"type": "git",
23+
"url": "https://github.com/doczjs/docz.git",
24+
"directory": "other-packages/babel-plugin-export-metadata"
25+
},
2126
"scripts": {
2227
"fix": "yarn lint --fix",
2328
"lint": "eslint . --ext .js",

other-packages/eslint-config-docz-js/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
"index.js",
1313
"package.json"
1414
],
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/doczjs/docz.git",
18+
"directory": "other-packages/eslint-config-docz-js"
19+
},
1520
"scripts": {
1621
"fix": "run-s fix:*",
1722
"fix:prettier": "prettier \"**/*.js\" --write"

other-packages/eslint-config-docz-ts/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
"index.js",
1313
"package.json"
1414
],
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/doczjs/docz.git",
18+
"directory": "other-packages/eslint-config-docz-ts"
19+
},
1520
"scripts": {
1621
"fix": "run-s fix:*",
1722
"fix:prettier": "prettier \"**/*.js\" --write"

other-packages/load-cfg/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"package.json",
1212
"README.md"
1313
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/doczjs/docz.git",
17+
"directory": "other-packages/load-cfg"
18+
},
1419
"scripts": {
1520
"dev": "cross-env NODE_ENV=development yarn build -w",
1621
"build": "cross-env NODE_ENV=production rollup -c",

other-packages/react-docgen-actual-name-handler/package.json

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
"package.json",
1111
"README.md"
1212
],
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/doczjs/docz.git",
16+
"directory": "other-packages/react-docgen-actual-name-handler"
17+
},
1318
"scripts": {
1419
"dev": "cross-env NODE_ENV=development yarn build -w",
1520
"build": "cross-env NODE_ENV=production rollup -c",

0 commit comments

Comments
 (0)