Files
grafana/packages/grafana-data/package.json
T

89 lines
2.4 KiB
JSON
Raw Normal View History

2019-06-18 08:17:27 -07:00
{
"author": "Grafana Labs",
"license": "Apache-2.0",
2019-06-18 08:17:27 -07:00
"name": "@grafana/data",
"version": "11.3.0-pre",
2019-06-18 08:17:27 -07:00
"description": "Grafana Data Library",
"keywords": [
"typescript"
],
"sideEffects": false,
"repository": {
"type": "git",
2020-02-27 12:00:36 -05:00
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-data"
},
2019-06-18 08:17:27 -07:00
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"access": "public"
},
"files": [
"dist",
"./README.md",
"./CHANGELOG.md",
"LICENSE_APACHE2"
],
2019-06-18 08:17:27 -07:00
"scripts": {
"build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",
"clean": "rimraf ./dist ./compiled ./package.tgz",
"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 08:17:27 -07:00
},
"dependencies": {
"@braintree/sanitize-url": "7.0.1",
"@grafana/schema": "11.3.0-pre",
2023-01-27 11:19:35 +01:00
"@types/d3-interpolate": "^3.0.0",
"@types/string-hash": "1.1.3",
2023-01-26 13:02:22 +01:00
"d3-interpolate": "3.0.1",
"date-fns": "3.6.0",
2024-01-31 13:32:18 +00:00
"dompurify": "^3.0.0",
2023-07-31 13:52:26 +02:00
"eventemitter3": "5.0.1",
"fast_array_intersect": "1.1.0",
"history": "4.10.1",
2021-03-02 10:13:27 +01:00
"lodash": "4.17.21",
2024-04-19 11:41:36 +00:00
"marked": "12.0.2",
2024-08-07 11:47:55 +00:00
"marked-mangle": "1.1.9",
"moment": "2.30.1",
"moment-timezone": "0.5.45",
2023-07-13 10:55:42 +01:00
"ol": "7.4.0",
"papaparse": "5.4.1",
2024-07-23 15:02:58 +00:00
"react-use": "17.5.1",
2023-07-31 13:52:26 +02:00
"rxjs": "7.8.1",
"string-hash": "^1.1.3",
"tinycolor2": "1.6.0",
2024-06-05 09:51:17 +00:00
"tslib": "2.6.3",
"uplot": "1.6.30",
"xss": "^1.0.14"
},
2019-06-18 08:17:27 -07:00
"devDependencies": {
"@grafana/tsconfig": "^2.0.0",
"@rollup/plugin-node-resolve": "15.2.3",
2024-01-31 13:32:18 +00:00
"@types/dompurify": "^3.0.0",
"@types/history": "4.7.11",
2024-07-19 16:16:11 +00:00
"@types/lodash": "4.17.7",
2024-08-02 09:35:44 +00:00
"@types/node": "20.14.14",
"@types/papaparse": "5.3.14",
2024-06-07 14:31:31 +02:00
"@types/react": "18.3.3",
2024-04-12 11:38:48 +00:00
"@types/react-dom": "18.2.25",
"@types/tinycolor2": "1.4.6",
"esbuild": "0.20.2",
2023-04-11 10:51:54 +01:00
"react": "18.2.0",
"react-dom": "18.2.0",
2024-05-13 11:07:17 +00:00
"rimraf": "5.0.7",
"rollup": "2.79.1",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-node-externals": "^5.0.0",
"typescript": "5.5.4"
},
"peerDependencies": {
2024-02-27 16:34:00 +00:00
"react": "^18.0.0",
"react-dom": "^18.0.0"
2019-10-31 10:48:05 +01:00
}
2019-06-18 08:17:27 -07:00
}