prometheus/web/ui/module/codemirror-promql/package.json
György Krajcsovits 1e3b14acec
chore: prep release 3.13.1 with tsdb related fix
Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
2026-07-10 08:27:29 +02:00

71 lines
2 KiB
JSON

{
"name": "@prometheus-io/codemirror-promql",
"version": "0.313.1",
"description": "a CodeMirror mode for the PromQL language",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"scripts": {
"build": "pnpm run build:lib",
"build:lib": "bash ./build.sh",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prometheus/prometheus.git"
},
"keywords": [
"promql",
"codemirror",
"mode",
"prometheus"
],
"author": "Prometheus Authors <prometheus-developers@googlegroups.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/prometheus/prometheus/issues"
},
"homepage": "https://github.com/prometheus/prometheus/blob/main/web/ui/module/codemirror-promql/README.md",
"dependencies": {
"@prometheus-io/lezer-promql": "workspace:*",
"lru-cache": "^11.5.1"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.7",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.1",
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@lezer/common": "^1.5.2",
"@lezer/highlight": "^1.2.3",
"@lezer/lr": "^1.4.10",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"eslint": "^9.39.4",
"eslint-plugin-prettier": "^5.5.6",
"isomorphic-fetch": "^3.0.0",
"jest": "^30.4.2",
"nock": "^14.0.15"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.4.0",
"@codemirror/language": "^6.3.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.1.1",
"@codemirror/view": "^6.4.0",
"@lezer/common": "^1.0.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 150
},
"engines": {
"node": ">=12.0.0"
}
}