UNPKG

@scaleway/changesets-renovate

Version:

Automatically create changesets for Renovate and pnpm catalogs

58 lines 1.55 kB
{ "name": "@scaleway/changesets-renovate", "version": "2.2.3", "description": "Automatically create changesets for Renovate and pnpm catalogs", "type": "module", "module": "./dist/cli.js", "types": "./dist/cli.d.ts", "sideEffects": false, "exports": { ".": { "types": "./dist/cli.d.ts", "default": "./dist/cli.js" } }, "files": [ "dist" ], "engines": { "node": ">=20.x" }, "bin": { "changesets-renovate": "dist/cli.js" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/scaleway/scaleway-lib", "directory": "packages/changesets-renovate" }, "license": "MIT", "keywords": [ "changesets", "renovate", "pnpm", "catalogs", "sync" ], "dependencies": { "@types/js-yaml": "4.0.9", "fast-glob": "3.3.3", "js-yaml": "4.1.1", "simple-git": "3.30.0" }, "scripts": { "prebuild": "shx rm -rf dist", "typecheck": "tsc --noEmit", "typecheck:go": "tsgo --noEmit", "type:generate": "tsc --declaration -p tsconfig.build.json", "type:generate:go": "tsgo --declaration -p tsconfig.build.json", "build": "vite build --config vite.config.ts && pnpm run type:generate", "build:profile": "npx vite-bundle-visualizer -c vite.config.ts", "lint": "eslint --report-unused-disable-directives --cache --cache-strategy content --ext ts,tsx .", "test:unit": "vitest --run --config vite.config.ts", "test:unit:coverage": "pnpm test:unit --coverage" } }