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
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 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
{
"name": "@perses-dev/explore",
"version": "0.54.0-beta.1",
"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.54.0-beta.1",
"@perses-dev/core": "0.53.0",
"@perses-dev/dashboards": "0.54.0-beta.1",
"@perses-dev/plugin-system": "0.54.0-beta.1",
"mdi-material-ui": "^7.9.2",
"qs": "^6.14.0",
"react-virtuoso": "^4.12.2",
"use-query-params": "^2.2.1",
"use-resize-observer": "^9.0.0"
},
"devDependencies": {
"@types/qs": "^6.14.0",
"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"
]
}