forked from sashin/sashinexists
40 lines
969 B
JSON
Executable File
40 lines
969 B
JSON
Executable File
{
|
|
"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"
|
|
}
|
|
}
|