forked from perses/shared
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.99 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
{
"name": "@perses-dev/explore",
"version": "0.53.0-rc.2",
"description": "The explore feature in Perses",
"license": "Apache-2.0",
"homepage": "https://github.com/perses/perses/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/perses/perses.git"
},
"bugs": {
"url": "https://github.com/perses/perses/issues"
},
"module": "dist/index.js",
"main": "dist/cjs/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist/",
"build": "concurrently \"npm:build:*\"",
"build:cjs": "swc ./src -d dist/cjs --strip-leading-paths --config-file ../.cjs.swcrc",
"build:esm": "swc ./src -d dist --strip-leading-paths --config-file ../.swcrc",
"build:types": "tsc --project tsconfig.build.json",
"type-check": "tsc --noEmit",
"start": "concurrently -P \"npm:build:* -- {*}\" -- --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint --fix src --ext .ts,.tsx"
},
"dependencies": {
"@nexucis/fuzzy": "^0.5.1",
"@perses-dev/components": "0.53.0-rc.2",
"@perses-dev/core": "0.53.0-rc.0",
"@perses-dev/dashboards": "0.53.0-rc.2",
"@perses-dev/plugin-system": "0.53.0-rc.2",
"@types/react-grid-layout": "^1.3.2",
"date-fns": "^4.1.0",
"immer": "^10.1.1",
"mdi-material-ui": "^7.9.2",
"qs": "^6.14.0",
"react-grid-layout": "^1.3.4",
"react-hook-form": "^7.46.1",
"react-intersection-observer": "^9.4.0",
"react-virtuoso": "^4.12.2",
"use-immer": "^0.11.0",
"use-query-params": "^2.2.1",
"use-resize-observer": "^9.0.0",
"zod": "^3.21.4",
"zustand": "^4.3.3"
},
"devDependencies": {
"@types/qs": "^6.14.0",
"history": "^5.3.0",
"intersection-observer": "^0.12.2",
"react-router-dom": "^6.30.1"
},
"peerDependencies": {
"@mui/material": "^6.1.10",
"@tanstack/react-query": "^4.39.1",
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0"
},
"files": [
"dist"
]
}