-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.74 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "docusaurus-plugin-react-docgen-typescript",
"version": "0.1.0",
"description": "A small plugin that integrates react-docgen-typescript with docusaurus 2.x",
"main": "pkg/dist-node/index.js",
"module": "pkg/dist-src/index.js",
"types": "pkg/dist-types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext=ts,tsx,js,jsx,json",
"prebuild": "rm -rf pkg",
"build": "npm-run-all -p build:*",
"build:src": "FORMAT=esm node ./scripts/build.js",
"build:cjs": "FORMAT=cjs node ./scripts/build.js",
"build:types": "tsc",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"files": [
"pkg",
"src"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"docusaurus",
"docusaurus-plugin",
"docusaurus2-plugin",
"react-docgen",
"react-docgen-typescript",
"typescript"
],
"repository": {
"url": "https://github.com/atomicpages/docusaurus-plugin-react-docgen-typescript",
"type": "git"
},
"author": "Dennis Thompson",
"license": "MIT",
"dependencies": {
"globby": "^11.0.0"
},
"peerDependencies": {
"react-docgen-typescript": "^1.20.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@djthoms/eslint-config": "^4.3.0",
"@djthoms/prettier-config": "^3.2.0",
"@docusaurus/core": "^2.0.0-beta.9",
"@docusaurus/module-type-aliases": "2.0.0-beta.9",
"@docusaurus/theme-classic": "^2.0.0-beta.9",
"@docusaurus/types": "2.0.0-beta.9",
"@tsconfig/docusaurus": "^1.0.4",
"@types/node": "^14.6.2",
"@types/react": "^17.0.3",
"esbuild": "^0.11.14",
"esbuild-css-modules-plugin": "^2.0.9",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"react": "^17.0.2",
"react-docgen-typescript": "^1.20.4",
"typescript": "^4.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,json}": [
"prettier --write",
"eslint --fix"
],
"*.{md,yml,yaml}": "prettier --write"
},
"prettier": "@djthoms/prettier-config",
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"@djthoms/eslint-config",
"@djthoms/eslint-config/typescript"
],
"overrides": [
{
"files": "build.js",
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
]
}
}