-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.95 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.95 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-display-name-plugin",
"version": "1.0.1",
"description": "Build plugin that preserves React component names in production bundles for DevTools. Supports Webpack and Vite.",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"watch": "webpack-dev-server --hot --inline --progress --colors",
"test": "vitest && pnpm -r build",
"lint": "eslint",
"build": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mockingjay-io/react-display-name-plugin.git"
},
"keywords": [
"webpack",
"vite",
"plugin",
"react",
"displayname",
"react-devtools",
"component-names",
"production",
"minified",
"vite-plugin",
"webpack-plugin",
"typescript",
"types"
],
"author": "Niranjan Rajendran <niranjan@mockingjay.io> (https://github.com/niranjan94)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mockingjay-io/react-display-name-plugin/issues"
},
"homepage": "https://github.com/mockingjay-io/react-display-name-plugin#readme",
"files": [
"lib/",
"index.js",
"index.d.ts",
"webpack.js",
"webpack.d.ts",
"vite.js",
"vite.d.ts",
"types.d.ts"
],
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-react-display-name": "^7.28.0",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@emotion/core": "^11.0.0",
"@emotion/styled": "^11.14.1",
"@emotion/styled-base": "^11.0.0",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.0",
"@types/webpack": "^5.28.0",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.0.6",
"acorn": "^8.15.0",
"babel-loader": "^8.4.1",
"babel-plugin-react-require": "^3.1.3",
"core-js": "^2.5.7",
"css-loader": "^6.11.0",
"eslint": "~9.39.1",
"globals": "^15.15.0",
"lodash": "^4.17.19",
"preact": "^10.27.2",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-bootstrap": "^2.10.10",
"react-dom": "^17.0.2",
"react-router": "^6.30.1",
"react-router-dom": "^5.3.4",
"style-loader": "^4.0.0",
"todomvc-app-css": "^2.1.2",
"todomvc-common": "^1.0.5",
"typescript": "^5.9.3",
"use-onclickoutside": "^0.3.0",
"vite": "^5.0.0",
"vitest": "^4.0.6",
"webpack": "^5.102.1",
"@emotion/react": "^11.14.0",
"classnames": "^2.5.1"
},
"peerDependencies": {
"vite": ">=2.0.0",
"webpack": "5.x"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"vite": {
"optional": true
}
},
"dependencies": {
"acorn-walk": "8.3.4",
"minimatch": "7.4.6"
}
}