@grafana/e2e-selectors
Version:
Grafana End-to-End Test Selectors Library
70 lines • 1.92 kB
JSON
{
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/e2e-selectors",
"version": "12.3.1",
"description": "Grafana End-to-End Test Selectors Library",
"keywords": [
"cli",
"grafana",
"e2e",
"typescript"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-e2e-selectors"
},
"main": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts",
"publishConfig": {
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/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-npm-package.js",
"postpack": "mv package.json.bak package.json"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.1",
"@types/node": "24.9.2",
"@types/semver": "7.7.1",
"esbuild": "0.25.8",
"rimraf": "6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-esbuild": "6.2.1",
"rollup-plugin-node-externals": "^8.0.0"
},
"dependencies": {
"semver": "^7.7.0",
"tslib": "2.8.1",
"typescript": "5.9.2"
},
"module": "./dist/esm/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
}
}
}