source: node_modules/react-inspector/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.9 KB
Line 
1{
2 "name": "react-inspector",
3 "version": "6.0.2",
4 "description": "Power of Browser DevTools inspectors right inside your React app",
5 "keywords": [
6 "devtools",
7 "inspector",
8 "object",
9 "object-inspector",
10 "react",
11 "react-component",
12 "reactjs",
13 "table",
14 "table-inspector",
15 "table-view",
16 "tableview",
17 "tree",
18 "tree-view",
19 "treeview",
20 "ui",
21 "view"
22 ],
23 "homepage": "https://github.com/xyc/react-inspector",
24 "bugs": {
25 "url": "https://github.com/xyc/react-inspector/issues"
26 },
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/xyc/react-inspector.git"
30 },
31 "license": "MIT",
32 "author": "Xiaoyi Chen <cxychina@gmail.com> (http://github.com/xyc)",
33 "exports": {
34 ".": {
35 "types": "./dist/index.d.ts",
36 "require": "./dist/index.js",
37 "import": "./dist/index.mjs"
38 },
39 "./package.json": "./package.json"
40 },
41 "main": "dist/index.js",
42 "module": "dist/index.mjs",
43 "types": "dist/index.d.ts",
44 "files": [
45 "dist/**/*",
46 "README.md",
47 "LICENSE",
48 "HISTORY.md",
49 ".js",
50 ".mjs",
51 ".d.ts"
52 ],
53 "scripts": {
54 "build": "tsup",
55 "build-storybook": "build-storybook",
56 "chromatic": "chromatic --project-token=17yeg4lpa7q",
57 "lint": "eslint src stories",
58 "prerelease": "npm run lint && npm run test && npm run build",
59 "release": "npm publish . --access public",
60 "storybook": "start-storybook -p 9001",
61 "test": "jest src"
62 },
63 "devDependencies": {
64 "@babel/core": "^7.11.6",
65 "@babel/plugin-proposal-class-properties": "^7.10.4",
66 "@babel/plugin-proposal-do-expressions": "^7.10.4",
67 "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
68 "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
69 "@babel/plugin-proposal-object-rest-spread": "^7.11.0",
70 "@babel/plugin-proposal-optional-chaining": "^7.11.0",
71 "@babel/plugin-syntax-bigint": "^7.8.3",
72 "@babel/plugin-transform-object-assign": "^7.10.4",
73 "@babel/plugin-transform-runtime": "^7.11.5",
74 "@babel/preset-env": "^7.11.5",
75 "@babel/preset-react": "^7.10.4",
76 "@babel/preset-typescript": "^7.18.6",
77 "@babel/register": "^7.11.5",
78 "@storybook/builder-webpack5": "^6.5.9",
79 "@storybook/manager-webpack5": "^6.5.9",
80 "@storybook/react": "^6.5.9",
81 "@types/is-dom": "^1.1.0",
82 "@types/react": "^16",
83 "@typescript-eslint/eslint-plugin": "^5.30.4",
84 "@typescript-eslint/parser": "^5.30.4",
85 "babel-loader": "^8.1.0",
86 "chromatic": "^6.7.0",
87 "eslint": "^8.19.0",
88 "eslint-config-prettier": "^8.5.0",
89 "eslint-plugin-prettier": "^4.2.1",
90 "expect": "^26.4.2",
91 "is-dom": "^1.1.0",
92 "jest": "^26.4.2",
93 "prettier": "^2.1.1",
94 "react": "^16.13.1",
95 "react-dom": "^16.13.1",
96 "react-test-renderer": "^16.13.1",
97 "tsup": "^6.1.3",
98 "typescript": "^4.7.4",
99 "webpack": "^5"
100 },
101 "peerDependencies": {
102 "react": "^16.8.4 || ^17.0.0 || ^18.0.0"
103 }
104}
Note: See TracBrowser for help on using the repository browser.