generated from atomicpages/ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.75 KB
/
package.json
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
{
"name": "docusaurus-plugin-react-docgen",
"version": "0.1.1",
"description": "A small plugin that integrates react-docgen with docusaurus 2.x",
"keywords": [
"docusaurus",
"plugin",
"react-docgen"
],
"repository": {
"type": "git",
"url": "https://github.com/atomicpages/docusaurus-plugin-react-docgen"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"license": "MIT",
"author": "Dennis Thompson",
"files": [
"src",
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint src --ext=js,ts,tsx",
"prebuild": "rm -rf dist",
"build": "npm-run-all -p build:*",
"build:esm": "esbuild --sourcemap --target=node18 --format=esm --outdir=dist/esm src/**",
"build:cjs": "esbuild --target=node18 --format=cjs --sourcemap --outdir=dist/cjs src/**",
"build:types": "tsc -p .",
"prepare": "husky install"
},
"dependencies": {
"glob": "^8.0.3",
"superstruct": "^1.0.3"
},
"devDependencies": {
"@babel/parser": "^7.23.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@djthoms/eslint-config": "^6.1.0",
"@djthoms/prettier-config": "^4.3.0",
"@docusaurus/types": "^3.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/glob": "^8.0.0",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"esbuild": "^0.19.5",
"husky": "^8.0.1",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"react-docgen": "^7.0.0",
"semantic-release": "^22.0.7",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react-docgen": "^5.0.0 || ^6.0.0 || ^7.0.0"
}
}