Identified vulnerable fast-xml-parser dependency.
UnderstandAdded npm override for patched version.
EditCleaned npm cache and regenerated lockfile.
SetupConfirmed zero vulnerabilities and correct version installed.
VerifyCommitted and pushed fix changes.
Cleanup➜ pi-mono git:(main) npm install
pi-monorepo@0.0.3 prepare husky
added 1 package, and audited 562 packages in 2s
95 packages are looking for funding
run npm fund for details
17 high severity vulnerabilities
To address issues that do not require attention, run: npm audit fix
To address all issues (including breaking changes), run: npm audit fix --force
Run npm audit for details.
figure out what causes the security warning and tell me how to fix it
The user wants me to figure out what's causing the 17 high severity vulnerabilities in their npm packages. Let me run npm audit to get the details.
>cd /Users/badlogic/workspaces/pi-mono && npm audit 2>&1# npm audit report
fast-xml-parser 4.3.6 - 5.3.3
Severity: high
fast-xml-parser has RangeError DoS Numeric Entities Bug - https://github.com/advisories/GHSA-37qj-frw5-hhjh
fix available via `npm audit fix --force`
Will install @aws-sdk/client-bedrock-runtime@3.893.0, which is a breaking change
node_modules/fast-xml-parser
@aws-sdk/xml-builder >=3.894.0
Depends on vulnerable versions of fast-xml-parser
node_modules/@aws-sdk/xml-builder
@aws-sdk/core >=3.894.0
Depends on vulnerable versions of @aws-sdk/xml-builder
node_modules/@aws-sdk/core
@aws-sdk/client-bedrock-runtime >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/credential-provider-node
Depends on vulnerable versions of @aws-sdk/middleware-user-agent
Depends on vulnerable versions of @aws-sdk/token-providers
Depends on vulnerable versions of @aws-sdk/util-user-agent-node
node_modules/@aws-sdk/client-bedrock-runtime
@aws-sdk/client-sso >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/middleware-user-agent
Depends on vulnerable versions of @aws-sdk/util-user-agent-node
node_modules/@aws-sdk/client-sso
@aws-sdk/credential-provider-env >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
node_modules/@aws-sdk/credential-provider-env
@aws-sdk/credential-provider-node >=3.894.0
Depends on vulnerable versions of @aws-sdk/credential-provider-env
Depends on vulnerable versions of @aws-sdk/credential-provider-http
Depends on vulnerable versions of @aws-sdk/credential-provider-ini
Depends on vulnerable versions of @aws-sdk/credential-provider-process
Depends on vulnerable versions of @aws-sdk/credential-provider-sso
Depends on vulnerable versions of @aws-sdk/credential-provider-web-identity
node_modules/@aws-sdk/credential-provider-node
@aws-sdk/credential-provider-http >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
node_modules/@aws-sdk/credential-provider-http
@aws-sdk/credential-provider-ini >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/credential-provider-env
Depends on vulnerable versions of @aws-sdk/credential-provider-http
Depends on vulnerable versions of @aws-sdk/credential-provider-login
Depends on vulnerable versions of @aws-sdk/credential-provider-process
Depends on vulnerable versions of @aws-sdk/credential-provider-sso
Depends on vulnerable versions of @aws-sdk/credential-provider-web-identity
Depends on vulnerable versions of @aws-sdk/nested-clients
node_modules/@aws-sdk/credential-provider-ini
@aws-sdk/credential-provider-login *
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/nested-clients
node_modules/@aws-sdk/credential-provider-login
@aws-sdk/credential-provider-process >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
node_modules/@aws-sdk/credential-provider-process
@aws-sdk/credential-provider-sso >=3.894.0
Depends on vulnerable versions of @aws-sdk/client-sso
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/token-providers
node_modules/@aws-sdk/credential-provider-sso
@aws-sdk/credential-provider-web-identity >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/nested-clients
node_modules/@aws-sdk/credential-provider-web-identity
@aws-sdk/middleware-user-agent >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
node_modules/@aws-sdk/middleware-user-agent
@aws-sdk/util-user-agent-node >=3.894.0
Depends on vulnerable versions of @aws-sdk/middleware-user-agent
node_modules/@aws-sdk/util-user-agent-node
@aws-sdk/nested-clients >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/middleware-user-agent
Depends on vulnerable versions of @aws-sdk/util-user-agent-node
node_modules/@aws-sdk/nested-clients
@aws-sdk/token-providers >=3.894.0
Depends on vulnerable versions of @aws-sdk/core
Depends on vulnerable versions of @aws-sdk/nested-clients
node_modules/@aws-sdk/token-providers
17 high severity vulnerabilities
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
Command exited with code 1The vulnerability is in fast-xml-parser versions 4.3.6 - 5.3.3. It's a transitive dependency from @aws-sdk/client-bedrock-runtime. All 17 vulnerabilities are the same issue propagating through the AWS SDK dependency tree.
The fix is to upgrade @aws-sdk/client-bedrock-runtime to version 3.893.0 or later, which will pull in a fixed version of fast-xml-parser.
Let me check which package has the AWS SDK dependency.
>cd /Users/badlogic/workspaces/pi-mono && rg '"@aws-sdk/client-bedrock-runtime"' --include '*.json' -A1rg: unrecognized flag --include
similar flags that are available: --include-zero
Command exited with code 2Let me use the correct ripgrep syntax.
>cd /Users/badlogic/workspaces/pi-mono && rg '@aws-sdk/client-bedrock-runtime' -g '*.json'packages/ai/package.json: "@aws-sdk/client-bedrock-runtime": "^3.966.0",
package-lock.json: "node_modules/@aws-sdk/client-bedrock-runtime": {
package-lock.json: "resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.980.0.tgz",
package-lock.json: "@aws-sdk/client-bedrock-runtime": "^3.966.0",So the package is @aws-sdk/client-bedrock-runtime version ^3.966.0 in packages/ai/package.json, and the installed version is 3.980.0 according to package-lock.json.
The audit says the fix is available via npm audit fix --force and would install version 3.893.0. But wait, that doesn't make sense - 3.893.0 is lower than 3.966.0 which is our current minimum.
Let me re-read the audit output. It says:
fast-xml-parser 4.3.6 - 5.3.3 is vulnerable@aws-sdk/xml-builder >=3.894.0 depends on vulnerable versionsThis is confusing. Let me check the actual installed versions and see what's going on.
>cd /Users/badlogic/workspaces/pi-mono && npm ls fast-xml-parser 2>&1pi-monorepo@0.0.3 /Users/badlogic/workspaces/pi-mono
└─┬ @mariozechner/pi-ai@0.50.7 -> ./packages/ai
└─┬ @aws-sdk/client-bedrock-runtime@3.980.0
└─┬ @aws-sdk/core@3.973.5
└─┬ @aws-sdk/xml-builder@3.972.2
└── fast-xml-parser@5.2.5So the installed version is fast-xml-parser@5.2.5, which falls in the vulnerable range 4.3.6 - 5.3.3. The fix would be to update to fast-xml-parser version > 5.3.3.
Looking at the advisory: https://github.com/advisories/GHSA-37qj-frw5-hhjh
The fix is:
@aws-sdk/client-bedrock-runtime to a version that pulls in a fixed fast-xml-parserfast-xml-parserLet me check what the latest version of fast-xml-parser is and if AWS SDK has released a fix.
>npm view fast-xml-parser versions --json 2>&1 | tail -20"5.0.3",
"5.0.4",
"5.0.5",
"5.0.6",
"5.0.7",
"5.0.8",
"5.0.9",
"5.1.0",
"5.2.0",
"5.2.1",
"5.2.2",
"5.2.3",
"5.2.4",
"5.2.5",
"5.3.0",
"5.3.1",
"5.3.2",
"5.3.3",
"5.3.4"
]So 5.3.4 is the fixed version. The vulnerability is in 4.3.6 - 5.3.3, and 5.3.4 fixes it.
The AWS SDK hasn't updated their dependency yet. The solution is to add an npm override to force fast-xml-parser to use version 5.3.4.
Root Cause: fast-xml-parser versions 4.3.6 - 5.3.3 have a RangeError DoS vulnerability (GHSA-37qj-frw5-hhjh).
The dependency chain:
@aws-sdk/client-bedrock-runtime@3.980.0 └─ @aws-sdk/core@3.973.5 └─ @aws-sdk/xml-builder@3.972.2 └─ fast-xml-parser@5.2.5 ← vulnerableVersion 5.3.4 has the fix, but the AWS SDK hasn't updated their dependency yet.
Fix: Add an npm override to force the patched version. In your root package.json, add:
"overrides": { "fast-xml-parser": "5.3.4"}Then run npm install to apply it.
i suppose we should update the aws sdk then
The user wants to update the AWS SDK to get the fix. Let me check what the latest version is.
>npm view @aws-sdk/client-bedrock-runtime version 2>&13.980.0The installed version is already the latest (3.980.0). The AWS SDK team hasn't released a version with the fixed fast-xml-parser yet. So the only solution right now is to use an npm override.
Let me double-check by looking at what versions of @aws-sdk/xml-builder exist and if any use fast-xml-parser 5.3.4.
>npm view @aws-sdk/xml-builder versions --json 2>&1 | tail -10"3.953.0",
"3.956.0",
"3.957.0",
"3.965.0",
"3.968.0",
"3.969.0",
"3.972.0",
"3.972.1",
"3.972.2"
]The AWS SDK is already at the latest version (3.980.0 for client-bedrock-runtime, 3.972.2 for xml-builder). The fix for fast-xml-parser (5.3.4) was released, but AWS hasn't updated their dependency yet.
So the override is the only option for now.
You're already on the latest AWS SDK version (3.980.0). The AWS team hasn't updated their fast-xml-parser dependency yet.
The override is the only fix until AWS releases an update. Want me to add it to the root package.json?
ok, fix by overriding
The user wants me to add the override to the root package.json. Let me read it first to see its current structure.
I need to add an "overrides" field to the package.json. I'll add it after the "dependencies" section.
Now let me run npm install to apply the override and verify the vulnerability is fixed.
>cd /Users/badlogic/workspaces/pi-mono && npm install 2>&1> pi-monorepo@0.0.3 prepare
> husky
up to date, audited 562 packages in 2s
95 packages are looking for funding
run `npm fund` for details
17 high severity vulnerabilities
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
Run `npm audit` for details.Still showing vulnerabilities. Let me check what's happening. Maybe the override didn't take effect. Let me check the installed version.
>cd /Users/badlogic/workspaces/pi-mono && npm ls fast-xml-parser 2>&1pi-monorepo@0.0.3 /Users/badlogic/workspaces/pi-mono
└─┬ @mariozechner/pi-ai@0.50.7 -> ./packages/ai
└─┬ @aws-sdk/client-bedrock-runtime@3.980.0
└─┬ @aws-sdk/core@3.973.5
└─┬ @aws-sdk/xml-builder@3.972.2
└── fast-xml-parser@5.2.5The override didn't work. This might be because we need to delete the package-lock.json and node_modules to force the override to take effect.
The lockfile is pinning the old version. Need to regenerate it:
>cd /Users/badlogic/workspaces/pi-mono && rm -rf node_modules package-lock.json && npm install 2>&1npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, open '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/README.md'
npm warn tar TAR_ENTRY_ERROR ENOENT: no such file or directory, lstat '/Users/badlogic/workspaces/pi-mono/node_modules/lucide/dist'
npm warn cleanup Failed to remove some directories [
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/rxjs'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/rxjs'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/rxjs',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/rxjs'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/rxjs'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/supports-color',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/supports-color'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/supports-color'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/get-tsconfig',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/get-tsconfig'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/get-tsconfig'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/yargs',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/yargs/node_modules/ansi-regex'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/yargs/node_modules/ansi-regex'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/chalk',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/chalk/node_modules/color-name'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/chalk/node_modules/color-name'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/esbuild',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/esbuild'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/esbuild'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/lit-element',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/lit-element'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/lit-element'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/lit-html',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/lit-html'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/lit-html'
npm warn cleanup }
npm warn cleanup ],
npm warn cleanup [
npm warn cleanup '/Users/badlogic/workspaces/pi-mono/node_modules/@lit',
npm warn cleanup [Error: ENOTEMPTY: directory not empty, rmdir '/Users/badlogic/workspaces/pi-mono/node_modules/@lit/reactive-element'] {
npm warn cleanup errno: -66,
npm warn cleanup code: 'ENOTEMPTY',
npm warn cleanup syscall: 'rmdir',
npm warn cleanup path: '/Users/badlogic/workspaces/pi-mono/node_modules/@lit/reactive-element'
npm warn cleanup }
npm warn cleanup ]
npm warn cleanup ]
npm error code ENOENT
npm error syscall spawn sh
npm error path /Users/badlogic/workspaces/pi-mono/node_modules/@parcel/watcher
npm error errno -2
npm error enoent spawn sh ENOENT
npm error enoent This is related to npm not being able to find a file.
npm error enoent
npm error A complete log of this run can be found in: /Users/badlogic/.npm/_logs/2026-01-31T22_43_58_819Z-debug-0.log
[Showing lines 72-519 of 519 (50.0KB limit). Full output: /var/folders/49/l4171l3n219_xwq30fmyzr8w0000gn/T/pi-bash-41fbd421bd698352.log]
Command exited with code 254npm had issues with corrupted state. Let me clean everything more thoroughly and try again.
NPM cache issue. Let me clean up more thoroughly:
>cd /Users/badlogic/workspaces/pi-mono && rm -rf node_modules packages/*/node_modules && npm cache clean --force && npm install 2>&1npm warn using --force Recommended protections disabled.
npm warn deprecated node-domexception@1.0.0: Use your platform's native DOMException instead
> pi-monorepo@0.0.3 prepare
> husky
added 548 packages, and audited 561 packages in 34s
95 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilitiesThe override worked. Now let me verify the fast-xml-parser version.
Done. The override worked:
>cd /Users/badlogic/workspaces/pi-mono && npm ls fast-xml-parser 2>&1pi-monorepo@0.0.3 /Users/badlogic/workspaces/pi-mono
└─┬ @mariozechner/pi-ai@0.50.7 -> ./packages/ai
└─┬ @aws-sdk/client-bedrock-runtime@3.980.0
└─┬ @aws-sdk/core@3.973.5
└─┬ @aws-sdk/xml-builder@3.972.2
└── fast-xml-parser@5.3.4 invalid: "5.2.5" from node_modules/@aws-sdk/xml-builder
npm error code ELSPROBLEMS
npm error invalid: fast-xml-parser@5.3.4 /Users/badlogic/workspaces/pi-mono/node_modules/fast-xml-parser
npm error A complete log of this run can be found in: /Users/badlogic/.npm/_logs/2026-01-31T22_45_18_726Z-debug-0.log
Command exited with code 1The "invalid" message is expected with overrides - npm is just noting that the installed version doesn't match what the package requested. But the important thing is fast-xml-parser@5.3.4 is now installed and there are 0 vulnerabilities.
The fix is complete. The package.json now has the override and it resolves the security issue.
The "invalid" warning is expected with overrides (npm notes it doesn't match the package's requested version). The important part: 0 vulnerabilities and fast-xml-parser@5.3.4 is installed.
Fixed in package.json with:
"overrides": { "fast-xml-parser": "5.3.4"}ok, cmmit and push this
The user wants me to commit and push the package.json change. I need to follow the git rules - only add the specific files I changed.
>cd /Users/badlogic/workspaces/pi-mono && git add package.json package-lock.json && git commit -m "fix: override fast-xml-parser to 5.3.4 to resolve CVE" && git pushRunning formatting, linting, and type checking...
> pi-monorepo@0.0.3 check
> biome check --write . && tsgo --noEmit && cd packages/web-ui && npm run check
packages/coding-agent/src/modes/interactive/components/daxnuts.ts:49:12 lint/style/useTemplate FIXABLE ━━━━━━━━━━
i Template literals are preferred over string concatenation.
47 │ const top = pixels[row][x];
48 │ const bottom = pixels[row + 1]?.[x] ?? top;
> 49 │ line += rgb(bottom[0], bottom[1], bottom[2]) + rgb(top[0], top[1], top[2], true) + "▄";
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
50 │ }
51 │ line += RESET;
i Unsafe fix: Use a template literal.
47 47 │ const top = pixels[row][x];
48 48 │ const bottom = pixels[row + 1]?.[x] ?? top;
49 │ - → → → line·+=·rgb(bottom[0],·bottom[1],·bottom[2])·+·rgb(top[0],·top[1],·top[2],·true)·+·"▄";
49 │ + → → → line·+=·`${rgb(bottom[0],·bottom[1],·bottom[2])·+·rgb(top[0],·top[1],·top[2],·true)}▄`;
50 50 │ }
51 51 │ line += RESET;
packages/tui/test/bug-regression-isimageline-startswith-bug.test.ts:79:5 lint/style/useTemplate FIXABLE ━━━━━━━━━━
i Template literals are preferred over string concatenation.
77 │ "Middle \x1b_Ga=T,data...\x1b\\ more text",
78 │ // Very long line (simulating 300KB+ crash scenario)
> 79 │ "Text before " + "\x1b_Ga=T,f=100" + "A".repeat(300000) + " text after",
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
80 │ ];
81 │
i Unsafe fix: Use a template literal.
77 77 │ "Middle \x1b_Ga=T,data...\x1b\\ more text",
78 78 │ // Very long line (simulating 300KB+ crash scenario)
79 │ - → → → → "Text·before·"·+·"\x1b_Ga=T,f=100"·+·"A".repeat(300000)·+·"·text·after",
79 │ + → → → → `Text·before·\x1b_Ga=T,f=100${"A".repeat(300000)}·text·after`,
80 80 │ ];
81 81 │
packages/tui/test/bug-regression-isimageline-startswith-bug.test.ts:96:5 lint/style/useTemplate FIXABLE ━━━━━━━━━━
i Template literals are preferred over string concatenation.
94 │ "Middle \x1b]1337;File=inline=1:data==\x07 more text",
95 │ // Very long line (simulating 304KB crash scenario)
> 96 │ "Text before " + "\x1b]1337;File=size=800,600;inline=1:" + "B".repeat(300000) + " text after",
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
97 │ ];
98 │
i Unsafe fix: Use a template literal.
94 94 │ "Middle \x1b]1337;File=inline=1:data==\x07 more text",
95 95 │ // Very long line (simulating 304KB crash scenario)
96 │ - → → → → "Text·before·"·+·"\x1b]1337;File=size=800,600;inline=1:"·+·"B".repeat(300000)·+·"·text·after",
96 │ + → → → → `Text·before·\x1b]1337;File=size=800,600;inline=1:${"B".repeat(300000)}·text·after`,
97 97 │ ];
98 98 │
Skipped 3 suggested fixes.
If you wish to apply the suggested (unsafe) fixes, use the command biome check --write --unsafe
Checked 451 files in 373ms. No fixes applied.
Found 3 infos.
> @mariozechner/pi-web-ui@0.50.7 check
> biome check --write . && tsc --noEmit && cd example && biome check --write . && tsc --noEmit
Checked 73 files in 40ms. No fixes applied.
Checked 3 files in 8ms. No fixes applied.
✅ All pre-commit checks passed!
[main c9fa28e6] fix: override fast-xml-parser to 5.3.4 to resolve CVE
2 files changed, 6 insertions(+), 3 deletions(-)
To https://github.com/badlogic/pi-mono.git
0ece01b5..c9fa28e6 main -> mainCommit and push successful.
Done. Committed and pushed.
@aws-sdk/client-bedrock-runtime@3.980.0 └─ @aws-sdk/core@3.973.5 └─ @aws-sdk/xml-builder@3.972.2 └─ fast-xml-parser@5.2.5 ← vulnerable"overrides": { "fast-xml-parser": "5.3.4"}"overrides": { "fast-xml-parser": "5.3.4"}