mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 21:38:28 -06:00
Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
15
Dependencies/NodeJS/node_modules/npm/node_modules/read-package-json-fast/LICENSE
generated
vendored
Normal file
15
Dependencies/NodeJS/node_modules/npm/node_modules/read-package-json-fast/LICENSE
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
The ISC License
|
||||
|
||||
Copyright (c) npm, Inc. and Contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
141
Dependencies/NodeJS/node_modules/npm/node_modules/read-package-json-fast/lib/index.js
generated
vendored
Normal file
141
Dependencies/NodeJS/node_modules/npm/node_modules/read-package-json-fast/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,141 @@
|
||||
const { readFile, lstat, readdir } = require('fs/promises')
|
||||
const parse = require('json-parse-even-better-errors')
|
||||
const normalizePackageBin = require('npm-normalize-package-bin')
|
||||
const { resolve, dirname, join, relative } = require('path')
|
||||
|
||||
const rpj = path => readFile(path, 'utf8')
|
||||
.then(data => readBinDir(path, normalize(stripUnderscores(parse(data)))))
|
||||
.catch(er => {
|
||||
er.path = path
|
||||
throw er
|
||||
})
|
||||
|
||||
// load the directories.bin folder as a 'bin' object
|
||||
const readBinDir = async (path, data) => {
|
||||
if (data.bin) {
|
||||
return data
|
||||
}
|
||||
|
||||
const m = data.directories && data.directories.bin
|
||||
if (!m || typeof m !== 'string') {
|
||||
return data
|
||||
}
|
||||
|
||||
// cut off any monkey business, like setting directories.bin
|
||||
// to ../../../etc/passwd or /etc/passwd or something like that.
|
||||
const root = dirname(path)
|
||||
const dir = join('.', join('/', m))
|
||||
data.bin = await walkBinDir(root, dir, {})
|
||||
return data
|
||||
}
|
||||
|
||||
const walkBinDir = async (root, dir, obj) => {
|
||||
const entries = await readdir(resolve(root, dir)).catch(() => [])
|
||||
for (const entry of entries) {
|
||||
if (entry.charAt(0) === '.') {
|
||||
continue
|
||||
}
|
||||
const f = resolve(root, dir, entry)
|
||||
// ignore stat errors, weird file types, symlinks, etc.
|
||||
const st = await lstat(f).catch(() => null)
|
||||
if (!st) {
|
||||
continue
|
||||
} else if (st.isFile()) {
|
||||
obj[entry] = relative(root, f)
|
||||
} else if (st.isDirectory()) {
|
||||
await walkBinDir(root, join(dir, entry), obj)
|
||||
}
|
||||
}
|
||||
return obj
|
||||
}
|
||||
|
||||
// do not preserve _fields set in files, they are sus
|
||||
const stripUnderscores = data => {
|
||||
for (const key of Object.keys(data).filter(k => /^_/.test(k))) {
|
||||
delete data[key]
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
const normalize = data => {
|
||||
addId(data)
|
||||
fixBundled(data)
|
||||
pruneRepeatedOptionals(data)
|
||||
fixScripts(data)
|
||||
fixFunding(data)
|
||||
normalizePackageBin(data)
|
||||
return data
|
||||
}
|
||||
|
||||
rpj.normalize = normalize
|
||||
|
||||
const addId = data => {
|
||||
if (data.name && data.version) {
|
||||
data._id = `${data.name}@${data.version}`
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
// it was once common practice to list deps both in optionalDependencies
|
||||
// and in dependencies, to support npm versions that did not know abbout
|
||||
// optionalDependencies. This is no longer a relevant need, so duplicating
|
||||
// the deps in two places is unnecessary and excessive.
|
||||
const pruneRepeatedOptionals = data => {
|
||||
const od = data.optionalDependencies
|
||||
const dd = data.dependencies || {}
|
||||
if (od && typeof od === 'object') {
|
||||
for (const name of Object.keys(od)) {
|
||||
delete dd[name]
|
||||
}
|
||||
}
|
||||
if (Object.keys(dd).length === 0) {
|
||||
delete data.dependencies
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
const fixBundled = data => {
|
||||
const bdd = data.bundledDependencies
|
||||
const bd = data.bundleDependencies === undefined ? bdd
|
||||
: data.bundleDependencies
|
||||
|
||||
if (bd === false) {
|
||||
data.bundleDependencies = []
|
||||
} else if (bd === true) {
|
||||
data.bundleDependencies = Object.keys(data.dependencies || {})
|
||||
} else if (bd && typeof bd === 'object') {
|
||||
if (!Array.isArray(bd)) {
|
||||
data.bundleDependencies = Object.keys(bd)
|
||||
} else {
|
||||
data.bundleDependencies = bd
|
||||
}
|
||||
} else {
|
||||
delete data.bundleDependencies
|
||||
}
|
||||
|
||||
delete data.bundledDependencies
|
||||
return data
|
||||
}
|
||||
|
||||
const fixScripts = data => {
|
||||
if (!data.scripts || typeof data.scripts !== 'object') {
|
||||
delete data.scripts
|
||||
return data
|
||||
}
|
||||
|
||||
for (const [name, script] of Object.entries(data.scripts)) {
|
||||
if (typeof script !== 'string') {
|
||||
delete data.scripts[name]
|
||||
}
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
const fixFunding = data => {
|
||||
if (data.funding && typeof data.funding === 'string') {
|
||||
data.funding = { url: data.funding }
|
||||
}
|
||||
return data
|
||||
}
|
||||
|
||||
module.exports = rpj
|
49
Dependencies/NodeJS/node_modules/npm/node_modules/read-package-json-fast/package.json
generated
vendored
Normal file
49
Dependencies/NodeJS/node_modules/npm/node_modules/read-package-json-fast/package.json
generated
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "read-package-json-fast",
|
||||
"version": "4.0.0",
|
||||
"description": "Like read-package-json, but faster",
|
||||
"main": "lib/index.js",
|
||||
"author": "GitHub Inc.",
|
||||
"license": "ISC",
|
||||
"scripts": {
|
||||
"test": "tap",
|
||||
"snap": "tap",
|
||||
"lint": "npm run eslint",
|
||||
"postlint": "template-oss-check",
|
||||
"template-oss-apply": "template-oss-apply --force",
|
||||
"lintfix": "npm run eslint -- --fix",
|
||||
"posttest": "npm run lint",
|
||||
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
|
||||
},
|
||||
"engines": {
|
||||
"node": "^18.17.0 || >=20.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^5.0.0",
|
||||
"@npmcli/template-oss": "4.23.3",
|
||||
"tap": "^16.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"json-parse-even-better-errors": "^4.0.0",
|
||||
"npm-normalize-package-bin": "^4.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/npm/read-package-json-fast.git"
|
||||
},
|
||||
"files": [
|
||||
"bin/",
|
||||
"lib/"
|
||||
],
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.23.3",
|
||||
"publish": true
|
||||
},
|
||||
"tap": {
|
||||
"nyc-arg": [
|
||||
"--exclude",
|
||||
"tap-snapshots/**"
|
||||
]
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user