-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"name": "react-deep-diff",
"version": "0.1.1",
"description": "React component to show diff between objects",
"author": "Gerald <gera2ld@live.com>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "vite dev",
"build:types": "tsc -p tsconfig.prod.json",
"build:js": "vite build",
"build": "run-s build:*",
"demo": "vite build --config vite.demo.conf.js",
"prepublishOnly": "run-s build",
"prettier": "prettier --ignore-path .eslintignore --plugin-search-dir=.",
"format": "run-s 'prettier -- --write .'",
"lint:format": "run-s 'prettier -- --check .'",
"lint:js": "eslint --ext .ts,tsx src",
"lint": "run-s lint:*"
},
"type": "module",
"main": "dist/react-deep-diff.js",
"module": "dist/react-deep-diff.js",
"files": [
"dist",
"types"
],
"keywords": [
"react",
"diff",
"deep"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"typings": "types/index.d.ts",
"dependencies": {
"@babel/runtime": "^7.21.5",
"@gera2ld/deepdiff": "^0.2.2",
"@gera2ld/format-json": "^0.3.0",
"prismjs": "^1.29.0"
},
"devDependencies": {
"@gera2ld/plaid": "~2.5.9",
"@gera2ld/plaid-common-react": "~2.5.9",
"@gera2ld/plaid-common-ts": "~2.5.9",
"@gera2ld/plaid-rollup": "~2.5.9",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react": "^4.0.0",
"husky": "^8.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.3.8"
},
"peerDependencies": {
"react": "*"
},
"repository": "git@github.com:gera2ld/react-deep-diff.git"
}