forked from TexteaInc/json-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.46 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@ojemuyiwa/json-viewer",
"description": "Interactive Json Viewer, but not only a json viewer",
"version": "2.13.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ojemuyiwa/json-viewer.git"
},
"author": "Forked by Femi Ojemuyiwa <apollo.software.ltd+jsonviewer@gmail.com>",
"bugs": "https://github.com/ojemuyiwa/json-viewer/issues",
"homepage": "https://github.com/ojemuyiwa/json-viewer#readme",
"keywords": [
"react-18",
"react",
"react-json",
"react-json-viewer",
"array-viewer",
"component",
"interactive",
"interactive-json",
"json",
"json-component",
"json-display",
"json-tree",
"json-view",
"json-viewer",
"json-inspector",
"json-tree",
"tree",
"tree-view",
"treeview"
],
"types": "dist/index.d.ts",
"jsdelivr": "dist/browser.js",
"browser": {
"vanilla": "dist/browser.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint": "npx eslint . --ext .ts,.tsx,.js,.jsx --cache --fix",
"lint:ci": "npx eslint . --ext .ts,.tsx,.js,.jsx --cache",
"build": "rollup -c rollup.config.ts --configPlugin swc3"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.6",
"copy-to-clipboard": "^3.3.3",
"zustand": "^4.1.5"
},
"lint-staged": {
"!*.{ts,tsx,js,jsx}": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "npx eslint --cache --fix"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-angular": "^17.4.2",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@swc/core": "^1.3.27",
"@swc/plugin-transform-imports": "^1.5.36",
"@testing-library/react": "13.4.0",
"@types/node": "^18.11.18",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/web": "^0.0.89",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^3.0.1",
"@vitest/coverage-c8": "^0.28.1",
"@vitest/ui": "^0.28.1",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"expect-type": "^0.15.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"pinst": "^3.0.0",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "^3.12.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-swc3": "^0.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.28.1"
},
"packageManager": "yarn@3.2.4",
"workspaces": [
"docs"
]
}