mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Used repository shortcut syntax where possible * Added repository directories for monorepo packages * Alphabetically sorted npm scripts
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"author": "Grafana Labs",
|
|
"license": "Apache-2.0",
|
|
"name": "@grafana/runtime",
|
|
"version": "6.7.0-pre",
|
|
"description": "Grafana Runtime Library",
|
|
"keywords": [
|
|
"grafana",
|
|
"typescript"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/grafana/grafana.git",
|
|
"directory": "packages/grafana-runtime"
|
|
},
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"build": "grafana-toolkit package:build --scope=runtime",
|
|
"bundle": "rollup -c rollup.config.ts",
|
|
"clean": "rimraf ./dist ./compiled",
|
|
"docsExtract": "api-extractor run 2>&1 | tee ../../reports/docs/$(basename $(pwd)).log",
|
|
"lint": "eslint src/ --ext=.js,.ts,.tsx",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@grafana/data": "6.7.0-pre",
|
|
"@grafana/ui": "6.7.0-pre",
|
|
"systemjs": "0.20.19",
|
|
"systemjs-plugin-css": "0.1.37"
|
|
},
|
|
"devDependencies": {
|
|
"@grafana/tsconfig": "^1.0.0-rc1",
|
|
"@types/systemjs": "^0.20.6",
|
|
"lodash": "4.17.15",
|
|
"pretty-format": "24.9.0",
|
|
"rollup": "1.6.0",
|
|
"rollup-plugin-commonjs": "9.2.1",
|
|
"rollup-plugin-node-resolve": "4.0.1",
|
|
"rollup-plugin-sourcemaps": "0.4.2",
|
|
"rollup-plugin-terser": "4.0.4",
|
|
"rollup-plugin-typescript2": "0.19.3",
|
|
"rollup-plugin-visualizer": "0.9.2",
|
|
"typescript": "3.7.2"
|
|
},
|
|
"types": "src/index.ts"
|
|
}
|