-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.37 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.37 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
{
"name": "react-docgen-typescript-plugin",
"version": "1.0.8",
"description": "A webpack plugin to inject react typescript docgen information.",
"keywords": [
"react",
"docgen",
"typescript",
"webpack",
"plugin"
],
"repository": "hipstersmoothie/react-docgen-typescript-plugin",
"license": "MIT",
"author": "Andrew Lisowski <lisowski54@gmail.com>",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts src/loader.ts --dts",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,css,md}\"",
"lint": "eslint src",
"check": "tsc --noEmit",
"release": "auto shipit",
"start": "pnpm build --watch",
"test": "vitest"
},
"lint-staged": {
"*.{js,css,md,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stzhu/prettier-plugin-tsconfig": "^0.7.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/debug": "^4.1.12",
"@types/find-cache-dir": "^5.0.2",
"@types/flat-cache": "^2.0.2",
"@types/micromatch": "^4.0.10",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"auto": "^11.3.6",
"auto-config-hipstersmoothie": "^4.0.0",
"debug": "^4.4.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vitest": "^0.5.4",
"find-cache-dir": "^6.0.0",
"flat-cache": "^6.1.19",
"globals": "^17.0.0",
"jiti": "^2.6.1",
"micromatch": "^4.0.8",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-docgen-typescript": "^2.4.0",
"ts-loader": "^9.5.4",
"tsup": "^8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"typescript": ">= 5.x",
"webpack": ">= 5"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"auto": {
"extends": "hipstersmoothie"
}
}