@datamodels/identity-accounts-crypto
Version:
DataModel implementation of the **Crypto Accounts** schema and definition specified in [CIP-21](https://github.com/ceramicnetwork/CIP/blob/main/CIPs/CIP-21/CIP-21.md).
46 lines (45 loc) • 1.11 kB
JSON
{
"name": "@datamodels/identity-accounts-crypto",
"version": "0.2.0",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/ceramicstudio/datamodels#readme",
"keywords": [
"datamodel",
"identity",
"accounts"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/datamodels",
"directory": "models/identity-accounts-crypto"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"schemas",
"types"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"types": "del types && json2ts -i schemas -o types",
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"lint": "eslint --fix",
"prepare": "yarn build",
"prepublishOnly": "package-check"
},
"dependencies": {
"@glazed/types": "^0.2.0"
}
}