caip
Version:
CAIP standard utils
71 lines (70 loc) • 1.58 kB
JSON
{
"name": "caip",
"description": "CAIP standard utils",
"version": "1.1.1",
"author": "Pedro Gomes <github.com/pedrouid>",
"license": "MIT",
"keywords": [
"caip",
"blockchain",
"standard",
"chain-agnostic",
"parse",
"format",
"chainId",
"accountId",
"assetId"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"homepage": "https://github.com/pedrouid/caip-js",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrouid/caip-js.git"
},
"bugs": {
"url": "https://github.com/pedrouid/caip-js/issues"
},
"scripts": {
"start": "tsdx watch",
"clean": "rm -rf dist",
"build:microbundle": "./node_modules/.bin/microbundle --compress=false",
"build": "yarn clean && yarn build:microbundle",
"test": "tsdx test ./test",
"lint": "tsdx lint src test",
"prepare": "yarn lint && yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "25.1.1",
"@types/node": "13.7.0",
"husky": "4.2.1",
"microbundle": "^0.14.2",
"tsdx": "0.12.3",
"tslib": "1.10.0",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
}
}