-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.36 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.36 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
{
"name": "react-inspector",
"version": "8.0.0",
"description": "Power of Browser DevTools inspectors right inside your React app",
"keywords": [
"devtools",
"inspector",
"object",
"object-inspector",
"react",
"react-component",
"reactjs",
"table",
"table-inspector",
"table-view",
"tableview",
"tree",
"tree-view",
"treeview",
"ui",
"view"
],
"homepage": "https://github.com/xyc/react-inspector",
"bugs": {
"url": "https://github.com/xyc/react-inspector/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xyc/react-inspector.git"
},
"license": "MIT",
"author": "Xiaoyi Chen <cxychina@gmail.com> (http://github.com/xyc)",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"HISTORY.md",
".js",
".mjs",
".d.ts"
],
"scripts": {
"build": "tsup",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=17yeg4lpa7q",
"lint": "eslint src stories",
"release": "auto latest",
"release:canary": "auto canary",
"storybook": "storybook dev -p 9001",
"test": "vitest src"
},
"devDependencies": {
"@storybook/react": "^9.1.4",
"@storybook/react-vite": "^9.1.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/is-dom": "^1.1.2",
"@types/react": "^19.1.12",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"auto": "^11.3.0",
"chromatic": "^13.1.4",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-storybook": "^9.1.4",
"happy-dom": "^18.0.1",
"is-dom": "^1.1.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-test-renderer": "^19.1.1",
"storybook": "^9.1.4",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"packageManager": "yarn@4.9.4",
"auto": {
"plugins": [
"npm",
"released"
]
}
}