-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
93 lines (93 loc) · 2.6 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
{
"name": "json-edit-react",
"version": "1.17.1",
"description": "React component for editing or viewing JSON/object data",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"sideEffects": false,
"types": "build/index.d.ts",
"exports": {
"types": "./build/index.d.ts",
"import": "./build/index.esm.js",
"require": "./dist/index.cjs.js",
"default": "./dist/index.cjs.js"
},
"files": [
"build/**/*"
],
"repository": "https://github.com/CarlosNZ/json-edit-react.git",
"author": "Carl Smith <[email protected]>",
"license": "MIT",
"scripts": {
"setup": "yarn install && cd demo && yarn install",
"demo": "cd demo && node ./scripts/getVersion.js && yarn && yarn start",
"build": "rimraf ./build && rollup -c && rimraf ./build/dts",
"lint": "npx eslint \"src/**\"",
"postbuild": "node ./scripts/cleanBuildTypes.cjs",
"prepublish": "yarn build",
"compile": "rimraf ./build && tsc",
"release": "yarn publish",
"release-demo": "cd demo && yarn deploy"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
},
"dependencies": {
"object-property-assigner": "^1.3.0",
"object-property-extractor": "^1.0.11"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.17",
"@types/react": ">=16.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.2.0",
"react-dom": ">=16.0.0",
"rimraf": "^5.0.5",
"rollup": "^4.10.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sizes": "^1.0.6",
"rollup-plugin-styles": "^4.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"keywords": [
"react",
"component",
"interactive",
"interactive-json",
"json",
"json-component",
"json-display",
"json-tree",
"json-view",
"json-viewer",
"json-inspector",
"json-schema",
"react-component",
"react-json",
"react18-json-view",
"react-json-view",
"theme",
"tree",
"tree-view",
"treeview"
]
}