65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
|
|
{
|
||
|
|
"name": "micro-packed",
|
||
|
|
"version": "0.5.3",
|
||
|
|
"description": "Define complex binary structures using composable primitives",
|
||
|
|
"files": [
|
||
|
|
"lib/index.js",
|
||
|
|
"lib/debugger.js",
|
||
|
|
"lib/esm/index.js",
|
||
|
|
"lib/esm/debugger.js",
|
||
|
|
"lib/index.d.ts",
|
||
|
|
"lib/debugger.d.ts",
|
||
|
|
"lib/index.d.ts.map",
|
||
|
|
"lib/debugger.d.ts.map",
|
||
|
|
"index.ts",
|
||
|
|
"debugger.ts",
|
||
|
|
"lib/esm/package.json"
|
||
|
|
],
|
||
|
|
"main": "lib/index.js",
|
||
|
|
"module": "lib/esm/index.js",
|
||
|
|
"types": "lib/index.d.ts",
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"types": "./lib/index.d.ts",
|
||
|
|
"import": "./lib/esm/index.js",
|
||
|
|
"default": "./lib/index.js"
|
||
|
|
},
|
||
|
|
"./debugger": {
|
||
|
|
"types": "./lib/debugger.d.ts",
|
||
|
|
"import": "./lib/esm/debugger.js",
|
||
|
|
"default": "./lib/debugger.js"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@scure/base": "~1.1.5"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc && tsc -p tsconfig.esm.json",
|
||
|
|
"lint": "prettier --check index.ts debugger.ts",
|
||
|
|
"format": "prettier --write index.ts debugger.ts",
|
||
|
|
"test": "node test/index.js && node test/debugger.test.js"
|
||
|
|
},
|
||
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
||
|
|
"license": "MIT",
|
||
|
|
"homepage": "https://github.com/paulmillr/micro-packed",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/paulmillr/micro-packed.git"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"micro-should": "0.4.0",
|
||
|
|
"prettier": "3.1.1",
|
||
|
|
"typescript": "5.3.2"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"encode",
|
||
|
|
"encoder",
|
||
|
|
"binary",
|
||
|
|
"bytes",
|
||
|
|
"struct",
|
||
|
|
"tuple",
|
||
|
|
"enum"
|
||
|
|
],
|
||
|
|
"funding": "https://paulmillr.com/funding/"
|
||
|
|
}
|