UNPKG

rollup-license-plugin

Version:

Extracts OSS license information of the npm packages in your rollup or vite output

79 lines (78 loc) 1.73 kB
{ "name": "rollup-license-plugin", "version": "3.0.2", "type": "module", "packageManager": "npm@10.8.1", "description": "Extracts OSS license information of the npm packages in your rollup or vite output", "keywords": [ "rollup", "vite", "build", "artifact", "oss", "open source", "compliance", "copyright", "license", "licence", "licenses", "licences", "scan", "scanner", "bom", "bill of materials", "plugin" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "author": "Christoph Werner <christoph@codepunkt.de>", "repository": { "type": "git", "url": "https://github.com/codepunkt/rollup-license-plugin" }, "license": "MIT", "engines": { "node": ">=18.0.0" }, "scripts": { "prebuild": "node -e \"fs.rmSync('dist', { force: true, recursive: true })\"", "build": "tsup src/index.ts", "typescript": "tsc --noEmit", "prepublishOnly": "npm run build", "test": "vitest --watch=false --coverage", "install:e2e": "cd test && npm i" }, "dependencies": { "get-npm-tarball-url": "^2.1.0", "node-fetch": "^3.3.2", "spdx-expression-validate": "^2.0.0" }, "devDependencies": { "@types/node": "^22.9.0", "@vitest/coverage-v8": "^3.0.7", "lint-staged": "^15.2.10", "prettier": "^3.3.3", "rollup": "^4.24.4", "tsup": "^8.3.5", "typescript": "^5.6.3", "vite": "^6.2.0", "vite-tsconfig-paths": "^5.1.0", "vitest": "^3.0.7" }, "lint-staged": { "*.{ts}": [ "prettier --write", "git add" ] }, "c8": { "reporter": [ "text", "cobertura" ] }, "files": [ "dist", "CHANGELOG.md" ] }