smartbuffer/package.json

47 lines
1.1 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-02-29 21:43:37 +00:00
"version": "1.0.7",
2022-06-15 21:36:51 +00:00
"private": false,
2024-04-14 15:23:03 +00:00
"description": "A module for handling ArrayBufferLike structures, including conversion and validation utilities.",
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": [
"typescript",
"arraybuffer",
"buffer conversion",
"base64",
"buffer validation",
"utility",
"data processing"
2022-06-15 21:36:51 +00:00
]
2024-04-14 15:23:03 +00:00
}