mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
032d0669cd
bump version 11.4.0-pre Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"author": "Grafana Labs",
|
|
"license": "Apache-2.0",
|
|
"name": "@grafana/schema",
|
|
"version": "11.4.0-pre",
|
|
"description": "Grafana Schema Library",
|
|
"keywords": [
|
|
"typescript"
|
|
],
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/grafana/grafana.git",
|
|
"directory": "packages/grafana-schema"
|
|
},
|
|
"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 --configPlugin esbuild",
|
|
"bundle": "rollup -c rollup.config.ts --configPlugin esbuild",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"@grafana/tsconfig": "^2.0.0",
|
|
"@rollup/plugin-node-resolve": "15.3.0",
|
|
"esbuild": "0.24.0",
|
|
"glob": "^11.0.0",
|
|
"rimraf": "6.0.1",
|
|
"rollup": "^4.22.4",
|
|
"rollup-plugin-dts": "^6.1.1",
|
|
"rollup-plugin-esbuild": "6.1.1",
|
|
"rollup-plugin-node-externals": "^7.1.3",
|
|
"typescript": "5.5.4"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "2.7.0"
|
|
}
|
|
}
|