Gathering detailed insights and metrics for @motss-changesets/parse
Gathering detailed insights and metrics for @motss-changesets/parse
npm install @motss-changesets/parse
Typescript
Module System
Node Version
NPM Version
69.3
Supply Chain
79.1
Quality
75
Maintenance
100
Vulnerability
100
License
@changesets/get-release-plan@4.0.8
Updated on Feb 20, 2025
@changesets/config@3.1.1
Updated on Feb 20, 2025
@changesets/cli@2.28.1
Updated on Feb 20, 2025
@changesets/apply-release-plan@7.0.10
Updated on Feb 20, 2025
@changesets/write@0.4.0
Updated on Feb 17, 2025
@changesets/should-skip-package@0.1.2
Updated on Feb 17, 2025
TypeScript (99.85%)
JavaScript (0.15%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,524
Last Day
1
Last Week
5
Last Month
29
Last Year
272
MIT License
9,470 Stars
611 Commits
600 Forks
36 Watchers
47 Branches
147 Contributors
Updated on Feb 20, 2025
Latest Version
0.4.1
Package Id
@motss-changesets/parse@0.4.1
Unpacked Size
20.22 kB
Size
4.61 kB
File Count
11
NPM Version
8.19.2
Node Version
16.18.0
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
-16.7%
5
Compared to previous week
Last Month
314.3%
29
Compared to previous month
Last Year
-45.9%
272
Compared to previous year
2
1
Parses a changeset from its written format to a data object.
1import parse from "@changesets/parse"; 2 3const changeset = `--- 4"@changesets/something": minor 5"@changesets/something-else": patch 6--- 7 8A description of a minor change`; 9 10const parsedChangeset = parse(changeset);
For example, it can convert:
1--- 2"@changesets/something": minor 3"@changesets/something-else": patch 4--- 5 6A description of a minor change
to
1{ 2 "summary": "A description of a minor change", 3 "releases": [ 4 { "name": "@changesets/something", "type": "minor" }, 5 { "name": "@changesets/something-else", "type": "patch" } 6 ] 7}
Note that this is not quite a complete Changeset for most tools as it lacks an id
.
For written changesets, the id is normally given as the file name, which parse is not aware of.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
24 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
all changesets reviewed
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
25 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-02-17
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