@the-minimal/protocol
Version:
Minimal and modular binary schema-full protocol for TypeScript
72 lines (71 loc) • 1.66 kB
JSON
{
"name": "@the-minimal/protocol",
"type": "module",
"version": "0.7.0",
"license": "MIT",
"author": "Miroslav Vršecký <yamiteru@icloud.com>",
"description": "Minimal and modular binary schema-full protocol for TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/the-minimal/protocol.git",
"directory": "src"
},
"keywords": [
"json",
"protocol",
"protocol-buffers",
"bson",
"jsonb",
"binary-protocol",
"binary-json",
"avro",
"javascript",
"typescript"
],
"homepage": "https://github.com/the-minimal/protocol",
"bugs": {
"url": "https://github.com/the-minimal/protocol/issues"
},
"scripts": {
"prepublishOnly": "bun run check && bun run build && bun run test",
"release": "release-it",
"build": "tsup && bun run scripts/stats.ts",
"check": "yarn biome check --apply ./",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@fast-check/vitest": "0.1.1",
"@vitest/coverage-v8": "1.6.0",
"bun": "1.1.10",
"release-it": "17.2.1",
"terser": "5.31.0",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"peerDependencies": {
"typescript": "5.4.5"
}
}