node -e '
const lock = require("./package-lock.json");
const entries = Object.entries(lock.packages || {}).filter(([k]) => k); // skip root ""
const c = { prod: 0, dev: 0, optional: 0, peer: 0, total: 0 };
for (const [, p] of entries) {
c.total++;
if (p.peer) c.peer++;
else if (p.optional) c.optional++;
else if (p.dev) c.dev++;
else c.prod++;
}
console.log(c);
'
Output: { prod: 2, dev: 955, optional: 113, peer: 8, total: 1078 }
So, 1078 total dependencies.
Is consciousness a complex form of information processing?
Is consciousness relating to the space in which qualia occurs?
Is consciousness the state of being awake, as opposed to asleep or dead?
Is consciousness some combination of the above?
Some of these are better understood than others. So, some people will show up with more confidence than others, which further confuses the issue.
Unfortunately, the above is not well understood, even among intelligent and informed audiences.