-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.06 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.06 KB
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
{
"name": "@humanlogio/perses-plugin",
"version": "0.1.3",
"scripts": {
"dev": "rsbuild dev",
"build": "npm run build-mf && concurrently \"npm:build:*\"",
"fmt": "prettier --write src/",
"build-mf": "rsbuild build",
"build:cjs": "swc ./src -d dist/lib/cjs --strip-leading-paths --config-file .cjs.swcrc",
"build:esm": "swc ./src -d dist/lib --strip-leading-paths --config-file .swcrc",
"build:types": "tsc --project tsconfig.build.json",
"test": "cross-env LC_ALL=C TZ=UTC jest",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"main": "dist/lib/cjs/index.js",
"module": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"devDependencies": {
"@module-federation/rsbuild-plugin": "^0.11.2",
"@rsbuild/core": "^1.2.19",
"@rsbuild/plugin-react": "^1.1.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.7.10",
"@swc/jest": "^0.2.37",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.14",
"@types/react-dom": "^18.3.0",
"concurrently": "^9.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "3.3.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.26.0"
},
"peerDependencies": {
"api": "github:humanlogio/api#11da8df",
"@bufbuild/protobuf": "^2.7.0",
"@connectrpc/connect": "^2.1.0",
"@connectrpc/connect-web": "^2.1.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hookform/resolvers": "^3.2.0",
"@perses-dev/components": "^0.51.1",
"@perses-dev/core": "^0.51.1",
"@perses-dev/dashboards": "^0.51.1",
"@perses-dev/explore": "^0.51.1",
"@perses-dev/plugin-system": "^0.51.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"echarts": "5.5.0",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0",
"react-hook-form": "^7.52.2",
"use-resize-observer": "^9.0.0"
},
"files": [
"dist/lib/**/*",
"dist/__mf/**/*",
"dist/mf-manifest.json",
"dist/mf-stats.json",
"dist/package.json",
"dist/README.md",
"dist/LICENSE"
],
"perses": {
"schemasPath": "schemas",
"plugins": [
{
"kind": "Datasource",
"spec": {
"display": {
"name": "Humanlog Datasource"
},
"name": "HumanlogDatasource"
}
},
{
"kind": "TimeSeriesQuery",
"spec": {
"display": {
"name": "Humanlog Time Series Query"
},
"name": "HumanlogTimeSeriesQuery"
}
},
{
"kind": "TraceQuery",
"spec": {
"display": {
"name": "Humanlog Trace Query"
},
"name": "HumanlogTraceQuery"
}
}
]
},
"dependencies": {
"@monaco-editor/react": "^4.7.0"
},
"overrides": {
"@tanstack/react-query": "^5.81.5"
}
}