UNPKG

@codecov/rollup-plugin

Version:

Official Codecov Rollup plugin

73 lines 2.08 kB
{ "name": "@codecov/rollup-plugin", "version": "1.9.1", "description": "Official Codecov Rollup plugin", "author": "Codecov", "license": "MIT", "keywords": [ "Codecov", "Rollup", "bundler", "plugin" ], "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "dependencies": { "unplugin": "^1.10.1", "@codecov/bundler-plugin-core": "^1.9.1" }, "devDependencies": { "@rollup/plugin-replace": "^5.0.5", "@types/node": "^20.11.15", "@vitest/coverage-v8": "^2.1.9", "codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0", "msw": "^2.7.0", "rollup": "4.22.4", "ts-node": "^10.9.2", "typedoc": "^0.27.5", "typescript": "^5.3.3", "unbuild": "^2.0.0", "vitest": "^2.1.9" }, "peerDependencies": { "rollup": "3.x || 4.x" }, "volta": { "extends": "../../package.json" }, "engines": { "node": ">=18.0.0" }, "scripts": { "type-check": "tsc --noEmit", "build": "unbuild", "dev": "unbuild --stub && node --watch-path=src dist/index.mjs", "clean": "rm -rf dist node_modules", "lint": "eslint . --ext .ts,.tsx", "lint:fix": "pnpm lint --fix", "format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write", "format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check", "test:unit": "vitest run", "test:unit:watch": "vitest watch", "test:unit:ci": "vitest --coverage --reporter=junit --outputFile=./bundler-plugin-core.junit.xml run", "test:unit:update": "vitest -u run", "generate:typedoc": "typedoc --options ./typedoc.json" } }