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",
|
2023-02-21 01:38:51 -06:00
|
|
|
"version": "9.5.0-pre",
|
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": {
|
2023-02-21 01:38:51 -06:00
|
|
|
"@grafana/data": "9.5.0-pre",
|
|
|
|
"@grafana/e2e-selectors": "9.5.0-pre",
|
2023-03-13 08:56:10 -05:00
|
|
|
"@grafana/faro-web-sdk": "1.0.2",
|
2023-02-21 01:38:51 -06:00
|
|
|
"@grafana/ui": "9.5.0-pre",
|
2022-05-20 07:07:07 -05:00
|
|
|
"@sentry/browser": "6.19.7",
|
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-02-17 08:43:06 -06:00
|
|
|
"rxjs": "7.8.0",
|
2019-09-16 08:50:15 -05:00
|
|
|
"systemjs": "0.20.19",
|
2023-02-20 03:43:05 -06:00
|
|
|
"tslib": "2.5.0"
|
2019-07-04 06:32:09 -05:00
|
|
|
},
|
2019-06-03 10:55:59 -05:00
|
|
|
"devDependencies": {
|
2022-02-10 07:37:39 -06:00
|
|
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
2023-02-27 06:01:24 -06:00
|
|
|
"@rollup/plugin-commonjs": "23.0.2",
|
2022-11-03 06:43:28 -05:00
|
|
|
"@rollup/plugin-node-resolve": "15.0.1",
|
2023-01-27 06:28:09 -06:00
|
|
|
"@testing-library/dom": "8.20.0",
|
2022-03-23 09:56:44 -05:00
|
|
|
"@testing-library/react": "12.1.4",
|
2022-11-02 10:57:57 -05:00
|
|
|
"@testing-library/react-hooks": "8.0.1",
|
2022-08-26 07:30:34 -05:00
|
|
|
"@testing-library/user-event": "14.4.3",
|
2022-01-07 10:33:26 -06:00
|
|
|
"@types/angular": "1.8.4",
|
2022-02-07 07:08:10 -06:00
|
|
|
"@types/history": "4.7.11",
|
2022-11-24 08:00:41 -06:00
|
|
|
"@types/jest": "29.2.3",
|
2023-03-08 03:38:06 -06:00
|
|
|
"@types/lodash": "4.14.191",
|
2022-03-23 09:56:44 -05:00
|
|
|
"@types/react": "17.0.42",
|
|
|
|
"@types/react-dom": "17.0.14",
|
2019-06-19 13:31:47 -05:00
|
|
|
"@types/systemjs": "^0.20.6",
|
2023-01-23 05:15:05 -06:00
|
|
|
"esbuild": "0.16.17",
|
2021-03-02 03:13:27 -06:00
|
|
|
"lodash": "4.17.21",
|
2022-08-03 08:47:09 -05:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2023-03-10 07:00:25 -06:00
|
|
|
"rimraf": "4.4.0",
|
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",
|
|
|
|
"rollup-plugin-terser": "7.0.2",
|
2022-12-27 08:30:52 -06:00
|
|
|
"typescript": "4.8.4"
|
2019-08-22 03:20:17 -05:00
|
|
|
},
|
2022-08-03 08:47:09 -05:00
|
|
|
"peerDependencies": {
|
2023-02-27 06:01:24 -06:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2"
|
2022-08-03 08:47:09 -05:00
|
|
|
}
|
2019-06-03 10:55:59 -05:00
|
|
|
}
|