mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
* Update dependency rollup to v3 * build(rollup): update all rollup related deps to latest version * chore(runtime): update peerDeps to match other package semver ranges * chore(yarn): refresh lock file * refactor(packages): migrate to esm for rollup@3 configs * build(packages): remove unused rollup dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com>
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"author": "Grafana Labs",
|
|
"license": "Apache-2.0",
|
|
"name": "@grafana/schema",
|
|
"version": "9.5.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.mjs",
|
|
"bundle": "rollup -c rollup.config.mjs",
|
|
"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": "^1.2.0-rc1",
|
|
"@rollup/plugin-node-resolve": "15.0.1",
|
|
"esbuild": "0.16.17",
|
|
"rimraf": "3.0.2",
|
|
"rollup": "3.3.0",
|
|
"rollup-plugin-dts": "^5.0.0",
|
|
"rollup-plugin-esbuild": "5.0.0",
|
|
"rollup-plugin-node-externals": "^5.0.2",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "2.5.0"
|
|
}
|
|
}
|