@minima-global/mds
Version:
Official MDS Typescript Library for Minima. Used for creating minidapps that interact with the Minima Blockchain.
63 lines • 1.67 kB
JSON
{
"name": "@minima-global/mds",
"version": "0.14.11",
"description": "Official MDS Typescript Library for Minima. Used for creating minidapps that interact with the Minima Blockchain.",
"publishConfig": {
"access": "public"
},
"keywords": [
"minima",
"typescript",
"mds",
"minidapps",
"minima-blockchain",
"web3"
],
"type": "module",
"homepage": "https://github.com/minima-global/dev-tools",
"bugs": {
"url": "https://github.com/minima-global/dev-tools/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/minima-global/dev-tools"
},
"author": "Minima Global",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"happy-dom": "^14.12.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.1",
"@vitest/coverage-v8": "^1.6.0",
"msw": "^2.3.1",
"typescript": "^5.0.0",
"vitest": "^1.6.0",
"@repo/typescript-config": "0.0.0"
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "tsc",
"format": "prettier --write \"./src/**/**.ts\" --write",
"check-format": "prettier \"./src/**/**.ts\" --check",
"dev": "vitest --typecheck",
"test": "vitest run --pool=threads --typecheck",
"coverage": "vitest run --coverage",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"ci": "turbo build check-format check-exports",
"test:types": "vitest --typecheck"
}
}