run npm install to generate a package lock

This commit is contained in:
sashinexists
2024-12-07 13:18:31 +11:00
parent e7d08a91b5
commit 23437d228e
2501 changed files with 290663 additions and 0 deletions

39
node_modules/decode-base64/package.json generated vendored Executable file
View File

@@ -0,0 +1,39 @@
{
"name": "decode-base64",
"repository": "github:fabiospampinato/decode-base64",
"description": "A tiny function for decoding base64 strings into Uint8Arrays, useful for bundling and loading WASM modules.",
"version": "3.0.1",
"type": "module",
"main": "dist/node.js",
"types": "./dist/node.d.ts",
"exports": {
"node": "./dist/node.js",
"default": "./dist/browser.js"
},
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "npm run clean && npm run compile && npm run test"
},
"keywords": [
"decode",
"base64",
"uint8array",
"buffer",
"node",
"web",
"browser"
],
"dependencies": {
"node-buffer-encoding": "^1.0.1"
},
"devDependencies": {
"fava": "^0.0.6",
"tsex": "^1.1.1",
"typescript": "^4.6.3",
"uint8-encoding": "^2.0.0"
}
}