smartbuffer/package.json

58 lines
1.4 KiB
JSON
Raw Normal View History

2022-06-15 21:36:51 +00:00
{
2023-07-10 00:42:20 +00:00
"name": "@push.rocks/smartbuffer",
2024-04-25 16:08:50 +00:00
"version": "3.0.4",
2022-06-15 21:36:51 +00:00
"private": false,
2024-04-17 17:49:14 +00:00
"description": "A library for managing ArrayBufferLike structures including conversion between Base64 and Uint8Array, and buffer validation.",
2022-06-15 21:36:51 +00: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 00:17:47 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2022-06-15 21:36:51 +00:00
},
"devDependencies": {
2024-02-25 00:17:47 +00: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 00:33:15 +00:00
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.20"
2022-06-15 21:36:51 +00: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 15:23:03 +00:00
],
"keywords": [
2024-04-17 17:49:14 +00:00
"ArrayBuffer",
"TypeScript",
"base64 conversion",
"Uint8Array",
"data transformation",
"binary data handling",
2024-04-14 15:23:03 +00:00
"buffer validation",
2024-04-17 17:49:14 +00:00
"modular programming",
"ESM",
"utilities"
],
"dependencies": {
"uint8array-extras": "^1.1.0"
2024-05-29 12:11:56 +00:00
},
"homepage": "https://code.foss.global/push.rocks/smartbuffer",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartbuffer.git"
}
2024-05-29 12:11:56 +00:00
}