prometheus/web/ui/module/lezer-promql/package.json
Julius Volz 096acdce7e Fix npm workspaces build for Mantine UI
Thanks to input by @nexucis :)

Signed-off-by: Julius Volz <julius.volz@gmail.com>
2024-02-21 22:36:27 +01:00

43 lines
1.1 KiB
JSON

{
"name": "@prometheus-io/lezer-promql",
"version": "0.49.1",
"description": "lezer-based PromQL grammar",
"main": "dist/index.cjs",
"type": "module",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "Prometheus Authors <prometheus-developers@googlegroups.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/prometheus/prometheus.git"
},
"keywords": [
"lezer",
"promql"
],
"bugs": {
"url": "https://github.com/prometheus/prometheus/issues"
},
"homepage": "https://github.com/prometheus/prometheus/blob/main/web/ui/module/lezer-promql/README.md",
"scripts": {
"build": "bash ./build.sh",
"lint": "echo 'nothing to do'",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@lezer/generator": "^1.5.1",
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.3.14",
"@rollup/plugin-node-resolve": "^15.2.3"
},
"peerDependencies": {
"@lezer/highlight": "^1.1.2",
"@lezer/lr": "^1.2.3"
}
}