grafana/packages/grafana-flamegraph/package.json
grafana-delivery-bot[bot] a6f111e23b
Release: Bump version to 10.3.0 (#76733)
"Release: Updated versions in package to 10.3.0"

Co-authored-by: grafana-delivery-bot[bot] <132647405+grafana-delivery-bot[bot]@users.noreply.github.com>
2023-10-18 09:23:25 +03:00

89 lines
2.4 KiB
JSON

{
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/flamegraph",
"version": "10.3.0",
"description": "Grafana flamegraph visualization component",
"keywords": [
"grafana",
"flamegraph",
"profiling",
"pyroscope"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-flamegraph"
},
"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"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json && rollup -c rollup.config.ts",
"bundle": "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"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"@emotion/css": "11.11.2",
"@grafana/data": "10.3.0",
"@grafana/ui": "10.3.0",
"@leeoniya/ufuzzy": "1.0.8",
"d3": "^7.8.5",
"lodash": "4.17.21",
"react": "18.2.0",
"react-use": "17.4.0",
"react-virtualized-auto-sizer": "1.0.7",
"tinycolor2": "1.6.0",
"tslib": "2.6.0"
},
"devDependencies": {
"@babel/core": "7.23.0",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.5",
"@grafana/tsconfig": "^1.2.0-rc1",
"@rollup/plugin-node-resolve": "15.2.3",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/d3": "^7",
"@types/jest": "^29.5.4",
"@types/lodash": "4.14.195",
"@types/react": "18.2.15",
"@types/react-virtualized-auto-sizer": "1.0.1",
"@types/tinycolor2": "1.4.3",
"babel-jest": "29.3.1",
"jest": "^29.6.4",
"jest-canvas-mock": "2.5.2",
"rollup": "2.79.1",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-node-externals": "^5.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}