Gathering detailed insights and metrics for @techor/read-workspace-packages
Gathering detailed insights and metrics for @techor/read-workspace-packages
Gathering detailed insights and metrics for @techor/read-workspace-packages
Gathering detailed insights and metrics for @techor/read-workspace-packages
A monorepo framework integrating first-class packages and build systems
npm install @techor/read-workspace-packages
Typescript
Module System
Node Version
NPM Version
TypeScript (90.97%)
JavaScript (7.95%)
Handlebars (1.02%)
Shell (0.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
10 Stars
392 Commits
1 Forks
2 Watchers
1 Branches
3 Contributors
Updated on May 13, 2025
Latest Version
2.4.6
Package Id
@techor/read-workspace-packages@2.4.6
Unpacked Size
10.83 kB
Size
3.15 kB
File Count
7
NPM Version
8.19.4
Node Version
18.16.1
Published on
Jul 25, 2023
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
3
.workspaces
in the current working directory1npm install @techor/read-workspace-packages
Your monorepo usually looks like this:
1. 2├── package.json 3└── packages 4 ├─── a 5 │ └─── package.json 6 ├─── b 7 │ ├─── node_modules 8 │ │ └─── fake-module 9 │ │ └─── package.json 10 │ ├─── bb 11 │ │ └─── package.json 12 │ └─── package.json 13 ├─── c 14 └─── d 15 └─── package.json
./package.json
1{ 2 "workspaces": ["packages/**"] 3}
./packages/d/package.json
1{ 2 "name": "d", 3 "private": true 4}
readWorkspacePackages(patterns?, options?): any[]
1import readWorkspacePackages from '@techor/read-workspace-packages' 2 3const packages = readWorkspacePackages() 4// [{ name: 'a' }, { name: 'b' }, { name: 'd', private: true }, { name: 'bb' }] 5 6const packages = readWorkspacePackages(['packages/*']) 7// [{ name: 'a' }, { name: 'b' }, { name: 'd', private: true }] 8 9const publicPackages = readWorkspacePackages() 10 .fiter((eachWorkspacePackage) => !eachWorkspacePackage.private) 11// [{ name: 'a' }, { name: 'b' }, { name: 'bb' }]
Inherited from fast-glob options
1{ 2 cwd: process.cwd(), 3 ignore: ['**/node_modules/**'] 4}
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
7 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 5
Reason
9 existing vulnerabilities detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
no SAST tool detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-14
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