Files
smartbuffer/package.json
T

63 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2022-06-15 23:36:51 +02:00
{
2023-07-10 02:42:20 +02:00
"name": "@push.rocks/smartbuffer",
2026-05-01 16:23:25 +00:00
"version": "3.0.6",
2022-06-15 23:36:51 +02:00
"private": false,
"description": "A robust TypeScript library for managing binary data by converting between Base64 strings and Uint8Array, validating buffer-like objects, and ensuring data purity.",
2022-06-15 23:36:51 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2022-06-15 23:36:51 +02:00
"license": "MIT",
"scripts": {
"test": "tstest test/ --web",
"format": "gitzone format",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2022-06-15 23:36:51 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.1",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2022-06-15 23:36:51 +02:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2022-06-15 23:36:51 +02:00
"npmextra.json",
"readme.md"
2024-04-14 17:23:03 +02:00
],
"keywords": [
2024-04-17 19:49:14 +02:00
"ArrayBuffer",
"Uint8Array",
"base64 conversion",
2024-04-17 19:49:14 +02:00
"binary data handling",
2024-04-14 17:23:03 +02:00
"buffer validation",
"TypeScript",
"data transformation",
2024-04-17 19:49:14 +02:00
"ESM",
"utilities",
"npm"
],
"dependencies": {
"uint8array-extras": "^1.5.0"
2024-05-29 14:11:56 +02:00
},
"homepage": "https://code.foss.global/push.rocks/smartbuffer",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartbuffer.git"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
2025-04-12 16:52:44 +00:00
}