Gathering detailed insights and metrics for rollup-plugin-userscript-metablock
Gathering detailed insights and metrics for rollup-plugin-userscript-metablock
Gathering detailed insights and metrics for rollup-plugin-userscript-metablock
Gathering detailed insights and metrics for rollup-plugin-userscript-metablock
Transform json file to userscript metablock and append on.
npm install rollup-plugin-userscript-metablock
Typescript
Module System
Node Version
NPM Version
70.1
Supply Chain
89.6
Quality
79.6
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
37 Stars
78 Commits
8 Forks
2 Watchers
4 Branches
8 Contributors
Updated on Jun 09, 2025
Latest Version
0.4.3
Package Id
rollup-plugin-userscript-metablock@0.4.3
Unpacked Size
216.33 kB
Size
71.40 kB
File Count
7
NPM Version
10.9.2
Node Version
22.14.0
Published on
Jun 09, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Transform json file to userscript metablock and append on.
Metakeys documents:
1npm install --save-dev rollup-plugin-userscript-metablock
simplest
1import metablock from 'rollup-plugin-userscript-metablock'; 2 3export default { 4 input: 'main.js', 5 output: { 6 file: 'bundle.user.js', 7 format: 'esm' 8 }, 9 plugins: [metablock()], 10};
common
1import metablock from 'rollup-plugin-userscript-metablock'; 2 3const pkg = require('package.json'); 4 5export default { 6 input: 'main.js', 7 output: { 8 file: 'bundle.user.js', 9 format: 'esm' 10 }, 11 plugins: [metablock({ 12 file: './meta.json', 13 override: { 14 name: pkg.name, 15 version: pkg.version, 16 description: pkg.description, 17 homepage: pkg.homepage, 18 author: pkg.author, 19 license: pkg.license, 20 } 21 })], 22};
You can find the options detail here, and meta details here.
@grant none
explicitly
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
3 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 2
Reason
Found 3/22 approved changesets -- score normalized to 1
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
14 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More