2019-06-03 10:55:59 -05:00
|
|
|
{
|
2019-07-23 19:17:41 -05:00
|
|
|
"author": "Grafana Labs",
|
|
|
|
"license": "Apache-2.0",
|
2019-06-03 10:55:59 -05:00
|
|
|
"name": "@grafana/runtime",
|
2024-05-14 05:54:11 -05:00
|
|
|
"version": "11.0.0",
|
2019-06-03 10:55:59 -05:00
|
|
|
"description": "Grafana Runtime Library",
|
|
|
|
"keywords": [
|
2019-07-23 19:17:41 -05:00
|
|
|
"grafana",
|
|
|
|
"typescript"
|
2019-06-03 10:55:59 -05:00
|
|
|
],
|
2022-08-03 08:47:09 -05:00
|
|
|
"sideEffects": false,
|
2019-07-23 19:17:41 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-02-27 11:00:36 -06:00
|
|
|
"url": "http://github.com/grafana/grafana.git",
|
|
|
|
"directory": "packages/grafana-runtime"
|
2019-07-23 19:17:41 -05:00
|
|
|
},
|
2019-06-03 10:55:59 -05:00
|
|
|
"main": "src/index.ts",
|
2022-08-03 08:47:09 -05:00
|
|
|
"types": "src/index.ts",
|
|
|
|
"publishConfig": {
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/esm/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
2022-09-28 10:04:55 -05:00
|
|
|
"./README.md",
|
|
|
|
"./CHANGELOG.md",
|
2022-08-03 08:47:09 -05:00
|
|
|
"LICENSE_APACHE2"
|
|
|
|
],
|
2019-06-03 10:55:59 -05:00
|
|
|
"scripts": {
|
2023-02-27 06:01:24 -06:00
|
|
|
"build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",
|
|
|
|
"bundle": "rollup -c rollup.config.ts",
|
2022-08-03 08:47:09 -05:00
|
|
|
"clean": "rimraf ./dist ./compiled ./package.tgz",
|
2022-12-01 04:34:52 -06:00
|
|
|
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
|
|
|
|
"prepack": "cp package.json package.json.bak && node ../../scripts/prepare-packagejson.js",
|
|
|
|
"postpack": "mv package.json.bak package.json"
|
2019-06-03 10:55:59 -05:00
|
|
|
},
|
2019-07-04 06:32:09 -05:00
|
|
|
"dependencies": {
|
2024-05-14 05:54:11 -05:00
|
|
|
"@grafana/data": "11.0.0",
|
|
|
|
"@grafana/e2e-selectors": "11.0.0",
|
2024-01-18 04:38:30 -06:00
|
|
|
"@grafana/faro-web-sdk": "^1.3.6",
|
2024-05-14 05:54:11 -05:00
|
|
|
"@grafana/schema": "11.0.0",
|
|
|
|
"@grafana/ui": "11.0.0",
|
2021-05-13 09:02:18 -05:00
|
|
|
"history": "4.10.1",
|
2021-10-27 08:21:07 -05:00
|
|
|
"lodash": "4.17.21",
|
2023-07-31 06:52:26 -05:00
|
|
|
"rxjs": "7.8.1",
|
2024-01-17 07:05:43 -06:00
|
|
|
"tslib": "2.6.2"
|
2019-07-04 06:32:09 -05:00
|
|
|
},
|
2019-06-03 10:55:59 -05:00
|
|
|
"devDependencies": {
|
2024-02-22 08:30:20 -06:00
|
|
|
"@grafana/tsconfig": "^1.3.0-rc1",
|
2023-10-11 04:18:54 -05:00
|
|
|
"@rollup/plugin-node-resolve": "15.2.3",
|
2024-03-19 05:37:33 -05:00
|
|
|
"@rollup/plugin-terser": "0.4.4",
|
2024-04-11 10:29:35 -05:00
|
|
|
"@testing-library/dom": "10.0.0",
|
2024-04-15 03:53:16 -05:00
|
|
|
"@testing-library/react": "15.0.2",
|
2024-01-11 04:13:09 -06:00
|
|
|
"@testing-library/user-event": "14.5.2",
|
2024-01-11 05:08:06 -06:00
|
|
|
"@types/angular": "1.8.9",
|
2022-02-07 07:08:10 -06:00
|
|
|
"@types/history": "4.7.11",
|
2024-02-01 17:43:21 -06:00
|
|
|
"@types/jest": "29.5.12",
|
2024-05-30 04:35:03 -05:00
|
|
|
"@types/lodash": "4.17.4",
|
2024-05-15 08:49:00 -05:00
|
|
|
"@types/react": "18.3.2",
|
2024-04-12 06:38:48 -05:00
|
|
|
"@types/react-dom": "18.2.25",
|
2024-01-17 05:16:15 -06:00
|
|
|
"@types/systemjs": "6.13.5",
|
2024-04-23 02:26:02 -05:00
|
|
|
"esbuild": "0.20.2",
|
2021-03-02 03:13:27 -06:00
|
|
|
"lodash": "4.17.21",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2024-05-13 06:07:17 -05:00
|
|
|
"rimraf": "5.0.7",
|
2023-02-27 06:01:24 -06:00
|
|
|
"rollup": "2.79.1",
|
2022-11-04 12:04:00 -05:00
|
|
|
"rollup-plugin-dts": "^5.0.0",
|
2022-12-16 03:48:59 -06:00
|
|
|
"rollup-plugin-esbuild": "5.0.0",
|
2023-02-27 06:01:24 -06:00
|
|
|
"rollup-plugin-node-externals": "^5.0.0",
|
|
|
|
"rollup-plugin-sourcemaps": "0.6.3",
|
2024-04-12 07:51:02 -05:00
|
|
|
"typescript": "5.4.5"
|
2019-08-22 03:20:17 -05:00
|
|
|
},
|
2022-08-03 08:47:09 -05:00
|
|
|
"peerDependencies": {
|
2024-02-27 10:34:00 -06:00
|
|
|
"react": "^18.0.0",
|
|
|
|
"react-dom": "^18.0.0"
|
2022-08-03 08:47:09 -05:00
|
|
|
}
|
2019-06-03 10:55:59 -05:00
|
|
|
}
|