@arcblock/vc
Version:
TypeScript lib to work with ArcBlock Verifiable Credentials
85 lines (84 loc) • 2.2 kB
JSON
{
"name": "@arcblock/vc",
"version": "1.29.23",
"description": "TypeScript lib to work with ArcBlock Verifiable Credentials",
"keywords": [
"arcblock",
"blockchain",
"did",
"sdk"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "wangshijun",
"email": "shijun@arcblock.io",
"url": "https://github.com/wangshijun"
},
"contributors": [
"wangshijun <shijun@arcblock.io> (https://github.com/wangshijun)"
],
"homepage": "https://github.com/ArcBlock/blockchain/tree/master/asset/vc",
"license": "Apache-2.0",
"type": "module",
"main": "./lib/index.cjs",
"module": "./esm/index.mjs",
"types": "./esm/index.d.mts",
"exports": {
".": {
"types": "./esm/index.d.mts",
"import": "./esm/index.mjs",
"default": "./lib/index.cjs"
},
"./lib/*.js": {
"types": "./esm/*.d.mts",
"import": "./esm/*.mjs",
"default": "./lib/*.cjs"
},
"./lib/*": {
"types": "./esm/*.d.mts",
"import": "./esm/*.mjs",
"default": "./lib/*.cjs"
}
},
"files": [
"lib",
"esm"
],
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/json-stable-stringify": "^1.1.0",
"@types/lodash": "^4.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArcBlock/blockchain.git"
},
"scripts": {
"build": "tsdown",
"prebuild": "rm -rf lib esm",
"lint": "biome check",
"lint:fix": "biome check --write",
"docs": "bun run gen-docs && bun run cleanup-docs && bun run format-docs",
"cleanup-docs": "node ../../scripts/cleanup-docs.js docs/README.md $npm_package_name",
"gen-docs": "jsdoc2md src/index.ts > docs/README.md",
"format-docs": "remark . -o",
"test": "bun test",
"coverage": "npm run test -- --coverage",
"clean": "rm -rf lib esm"
},
"bugs": {
"url": "https://github.com/ArcBlock/blockchain/issues"
},
"dependencies": {
"@arcblock/did": "1.29.23",
"@ocap/mcrypto": "1.29.23",
"@ocap/util": "1.29.23",
"@ocap/wallet": "1.29.23",
"debug": "^4.4.3",
"is-absolute-url": "^3.0.3",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.23"
}
}