smartbuffer/package.json

60 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",
2025-04-12 16:52:44 +00:00
"version": "3.0.5",
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": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2024-02-25 01:17:47 +01:00
"build": "(tsbuild --web --allowimplicitany)"
2022-06-15 23:36:51 +02:00
},
"devDependencies": {
2024-02-25 01:17:47 +01:00
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
2024-02-25 01:33:15 +01:00
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.20"
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",
"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.1.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
}