UNPKG

mnee

Version:

A simple package for interacting with the MNEE USD

52 lines (51 loc) 1.24 kB
{ "name": "mnee", "version": "2.1.5", "description": "A simple package for interacting with the MNEE USD", "type": "module", "source": "src/index.ts", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.ts", "default": "./dist/index.modern.js" }, "default": { "types": "./dist/index.d.ts", "default": "./dist/index.modern.js" } } }, "module": "./dist/index.module.js", "unpkg": "./dist/index.umd.js", "scripts": { "clean": "rm -rf dist", "build": "npm run clean && microbundle --globals @bsv/sdk=bsv && npm pack", "start": "node dist/index.modern.js", "test": "echo \"Error: no test specified\" && exit 1", "prepublishOnly": "npm run build" }, "keywords": [ "mnee", "bsv", "blockchain" ], "author": "Dan Wagner", "license": "MIT", "devDependencies": { "@types/node": "^22.14.0", "microbundle": "^0.15.1", "ts-node": "^10.9.2", "tsx": "^4.19.3", "typescript": "^5.4.5" }, "dependencies": { "@bsv/sdk": "^1.3.30" } }