2019-06-18 10:17:27 -05:00
|
|
|
{
|
2019-07-23 19:17:41 -05:00
|
|
|
"author": "Grafana Labs",
|
|
|
|
"license": "Apache-2.0",
|
2019-06-18 10:17:27 -05:00
|
|
|
"name": "@grafana/data",
|
2024-02-20 13:02:36 -06:00
|
|
|
"version": "11.0.0-pre",
|
2019-06-18 10:17:27 -05:00
|
|
|
"description": "Grafana Data Library",
|
|
|
|
"keywords": [
|
|
|
|
"typescript"
|
|
|
|
],
|
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-data"
|
2019-07-23 19:17:41 -05:00
|
|
|
},
|
2019-06-18 10:17:27 -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-18 10:17:27 -05:00
|
|
|
"scripts": {
|
2023-02-27 06:01:24 -06:00
|
|
|
"build": "tsc -p ./tsconfig.build.json && 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-18 10:17:27 -05:00
|
|
|
},
|
2020-02-19 07:40:41 -06:00
|
|
|
"dependencies": {
|
2024-01-25 03:22:31 -06:00
|
|
|
"@braintree/sanitize-url": "7.0.0",
|
2024-02-20 13:02:36 -06:00
|
|
|
"@grafana/schema": "11.0.0-pre",
|
2023-01-27 04:19:35 -06:00
|
|
|
"@types/d3-interpolate": "^3.0.0",
|
2024-01-14 13:12:27 -06:00
|
|
|
"@types/string-hash": "1.1.3",
|
2023-01-26 06:02:22 -06:00
|
|
|
"d3-interpolate": "3.0.1",
|
2024-03-14 04:10:59 -05:00
|
|
|
"date-fns": "3.4.0",
|
2024-01-31 07:32:18 -06:00
|
|
|
"dompurify": "^3.0.0",
|
2023-07-31 06:52:26 -05:00
|
|
|
"eventemitter3": "5.0.1",
|
2022-08-18 12:22:45 -05:00
|
|
|
"fast_array_intersect": "1.1.0",
|
2022-08-03 08:47:09 -05:00
|
|
|
"history": "4.10.1",
|
2021-03-02 03:13:27 -06:00
|
|
|
"lodash": "4.17.21",
|
2024-03-11 07:02:58 -05:00
|
|
|
"marked": "12.0.1",
|
2024-02-06 04:14:20 -06:00
|
|
|
"marked-mangle": "1.1.7",
|
2024-01-23 03:53:50 -06:00
|
|
|
"moment": "2.30.1",
|
2024-02-05 06:58:17 -06:00
|
|
|
"moment-timezone": "0.5.45",
|
2023-07-13 04:55:42 -05:00
|
|
|
"ol": "7.4.0",
|
2023-07-12 04:45:26 -05:00
|
|
|
"papaparse": "5.4.1",
|
2024-01-23 07:23:30 -06:00
|
|
|
"react-use": "17.5.0",
|
2023-07-31 06:52:26 -05:00
|
|
|
"rxjs": "7.8.1",
|
2023-04-15 01:08:28 -05:00
|
|
|
"string-hash": "^1.1.3",
|
2023-02-19 06:15:40 -06:00
|
|
|
"tinycolor2": "1.6.0",
|
2024-01-17 07:05:43 -06:00
|
|
|
"tslib": "2.6.2",
|
2024-01-29 15:34:43 -06:00
|
|
|
"uplot": "1.6.30",
|
2023-03-16 12:13:34 -05:00
|
|
|
"xss": "^1.0.14"
|
2020-02-19 07:40:41 -06:00
|
|
|
},
|
2019-06-18 10:17:27 -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-01-31 07:32:18 -06:00
|
|
|
"@types/dompurify": "^3.0.0",
|
2022-03-24 11:01:43 -05:00
|
|
|
"@types/history": "4.7.11",
|
2024-03-12 10:13:14 -05:00
|
|
|
"@types/lodash": "4.17.0",
|
2024-01-12 06:13:00 -06:00
|
|
|
"@types/marked": "5.0.2",
|
2024-03-13 09:20:28 -05:00
|
|
|
"@types/node": "20.11.27",
|
2024-01-12 09:15:01 -06:00
|
|
|
"@types/papaparse": "5.3.14",
|
2024-03-12 04:34:52 -05:00
|
|
|
"@types/react": "18.2.65",
|
2024-03-13 07:29:03 -05:00
|
|
|
"@types/react-dom": "18.2.22",
|
2024-01-14 18:16:59 -06:00
|
|
|
"@types/tinycolor2": "1.4.6",
|
2023-07-31 06:52:26 -05:00
|
|
|
"esbuild": "0.18.12",
|
2023-04-11 04:51:54 -05:00
|
|
|
"react": "18.2.0",
|
|
|
|
"react-dom": "18.2.0",
|
2024-01-17 03:06:38 -06:00
|
|
|
"rimraf": "5.0.5",
|
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",
|
2024-01-24 09:33:54 -06:00
|
|
|
"typescript": "5.3.3"
|
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"
|
2019-10-31 04:48:05 -05:00
|
|
|
}
|
2019-06-18 10:17:27 -05:00
|
|
|
}
|