-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.11 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.11 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
{
"name": "@perses-dev/loki-plugin",
"version": "0.5.0-beta.0",
"scripts": {
"dev": "rsbuild dev",
"build": "npm run build-mf && concurrently \"npm:build:*\"",
"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",
"lint": "eslint src --ext .ts,.tsx",
"test": "cross-env LC_ALL=C TZ=UTC jest",
"type-check": "tsc --noEmit"
},
"main": "lib/cjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@grafana/lezer-logql": "^0.2.8"
},
"peerDependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hookform/resolvers": "^3.2.0",
"@perses-dev/components": "^0.53.0-beta.4",
"@perses-dev/core": "^0.53.0-beta.3",
"@perses-dev/dashboards": "^0.53.0-beta.4",
"@perses-dev/explore": "^0.53.0-beta.4",
"@perses-dev/plugin-system": "^0.53.0-beta.4",
"@tanstack/react-query": "^4.39.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": [
"lib/**/*",
"__mf/**/*",
"mf-manifest.json",
"mf-stats.json"
],
"perses": {
"moduleName": "Loki",
"schemasPath": "schemas",
"plugins": [
{
"kind": "Datasource",
"spec": {
"display": {
"name": "Loki Datasource"
},
"name": "LokiDatasource"
}
},
{
"kind": "TimeSeriesQuery",
"spec": {
"display": {
"name": "Loki Time Series Query"
},
"name": "LokiTimeSeriesQuery"
}
},
{
"kind": "LogQuery",
"spec": {
"display": {
"name": "Loki Log Query"
},
"name": "LokiLogQuery"
}
}
]
}
}