⚡ Zero-dependency plcbundle library exclusively for Bun
at main 682 B view raw
1{ 2 "name": "@atscan/plcbundle-bun", 3 "version": "0.9.5", 4 "type": "module", 5 "description": "Bun library for working with DID PLC bundle archives (plcbundle)", 6 "main": "./src/index.ts", 7 "bin": { 8 "plcbundle-bun": "./src/cli.ts" 9 }, 10 "exports": { 11 ".": "./src/index.ts" 12 }, 13 "files": [ 14 "src" 15 ], 16 "scripts": { 17 "test": "bun test", 18 "test:watch": "bun test --watch", 19 "tests:coverage": "bun test --coverage", 20 "cli": "bun src/cli.ts", 21 "publish": "bunx jsr publish" 22 }, 23 "devDependencies": { 24 "@types/bun": "^1.3.1" 25 }, 26 "publishConfig": { 27 "access": "public" 28 }, 29 "dependencies": { 30 "@jmespath-community/jmespath": "^1.3.0" 31 } 32}