dag-jose-utils
Version:
Utility functions for the dag-jose ipld codec
62 lines • 1.72 kB
JSON
{
"name": "dag-jose-utils",
"version": "4.0.0",
"description": "Utility functions for the dag-jose ipld codec",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"sideEffects": false,
"keywords": [
"ipld",
"ipfs",
"jose",
"dag",
"cbor"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-dag-jose-utils.git"
},
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/ceramicnetwork/js-dag-jose-utils/issues"
},
"homepage": "https://github.com/ceramicnetwork/js-dag-jose-utils#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-3box": "^1.0.0",
"eslint-plugin-jest": "^27.6.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"turbo": "^1.11.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.7",
"multiformats": "^13.0.0"
},
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file .swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "pnpm run build:clean && pnpm run build:types && pnpm run build:js",
"lint": "eslint src --fix",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage"
}
}