-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
128 lines (128 loc) · 3.63 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
126
127
128
{
"name": "@textea/json-viewer",
"description": "Interactive Json Viewer, but not only a json viewer",
"packageManager": "[email protected]",
"version": "4.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TexteaInc/json-viewer.git"
},
"author": "himself65 <[email protected]>",
"bugs": "https://github.com/TexteaInc/json-viewer/issues",
"homepage": "https://github.com/TexteaInc/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",
"unpkg": "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": {
"dev": "pnpm --filter \"@textea/json-viewer-docs\" run dev",
"test": "vitest run",
"test:watch": "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 --max-warnings 0",
"build": "tsc && rollup -c rollup.config.ts --configPlugin swc3"
},
"dependencies": {
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"zustand": "^4.5.5"
},
"lint-staged": {
"!*.{ts,tsx,js,jsx}": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "npx eslint --cache --fix"
},
"peerDependencies": {
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@mui/material": "^6",
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.4",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@swc/core": "^1.7.36",
"@swc/helpers": "^0.5.13",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^20.16.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"expect-type": "^0.20.0",
"husky": "9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-swc3": "^0.12.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"overrides": {
"browserslist": "4.23.3",
"caniuse-lite": "1.0.30001660"
}
}