-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
96 lines (96 loc) · 2.44 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
{
"name": "console-feed",
"version": "3.6.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "A React component that displays console logs from the current page, an iframe or transported across a server",
"scripts": {
"prepack": "yarn build",
"build": "tsc -p ./tsconfig.build.json --declaration && for file in src/**/*.d.ts; do cp $file ${file/src/lib}; done",
"start": "vite demo",
"release": "yarn test && yarn build && yarn publish",
"precommit": "pretty-quick --staged",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.12",
"emotion-theming": "^10.0.10",
"linkifyjs": "^2.1.6",
"react-inline-center": "1.0.1",
"react-inspector": "^5.1.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.9",
"@types/jest": "^22.2.3",
"@types/linkifyjs": "2.1.3",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@vitejs/plugin-react": "^4.2.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"immutability-helper": "^2.6.6",
"jest": "^22.4.3",
"lodash": "^4.17.5",
"prettier": "^2.1.2",
"pretty-quick": "^1.6.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"ts-jest": "^22.4.2",
"typescript": "^5.4.3",
"vite": "^5.2.7"
},
"jest": {
"setupTestFrameworkScriptFile": "./scripts/test.js",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.spec.(ts|tsx|js)"
]
},
"peerDependencies": {
"react": "^15.x || ^16.x || ^17.x || ^18.x"
},
"files": [
"es",
"lib",
"umd"
],
"keywords": [
"devtools",
"inspector",
"object",
"object-inspector",
"react",
"react-component",
"reactjs",
"table",
"table-inspector",
"table-view",
"tableview",
"tree",
"tree-view",
"treeview",
"ui",
"view"
],
"homepage": "https://stackblitz.com/github/samdenty/console-feed?file=demo%2Fpublic%2Fiframe.html",
"repository": {
"type": "git",
"url": "https://github.com/samdenty/console-feed.git"
},
"bugs": {
"url": "https://github.com/samdenty/console-feed/issues"
},
"author": "Sam Denty <samddenty@gmail.com> (http://github.com/samdenty)",
"license": "MIT"
}