UNPKG

@thencc/micronautjs

Version:

MicronautJS is a simplified Algorand transaction library for Serverless Environments

65 lines (64 loc) 1.5 kB
{ "name": "@thencc/micronautjs", "version": "0.1.15", "description": "MicronautJS is a simplified Algorand transaction library for Serverless Environments", "types": "dist/index.d.ts", "main": "dist/index.js", "files": [ "dist/*", "LICENSE", "README.md" ], "scripts": { "build": "rm -rf dist && run-s build:*", "build:dist": "tsup src/index.ts", "build:types": "tsc --emitDeclarationOnly --outDir dist", "build:docs": "npx typedoc", "test": "jest", "tests": "cd tests && task prepare-tests && task tests", "lint:eslint": "eslint 'src/**/*.ts'" }, "keywords": [ "algo", "algorand", "microonaut", "microonautjs", "algosdk", "javascript", "js", "typescript", "ts", "frontend" ], "author": "Aubrey Anderson, Delwin Campbell, NCC", "license": "MIT", "repository": { "type": "git", "url": "git://github.com/thencc/micronautjs.git" }, "dependencies": { "algosdk": "^2.8.0", "buffer": "^6.0.3" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/node": "^20.14.9", "dotenv": "^16.4.5", "eslint": "^9.6.0", "jest": "^29.7.0", "jsdom": "^24.1.0", "npm-run-all": "^4.1.5", "prettier": "^3.3.2", "ts-jest": "^29.1.5", "ts-node": "^10.9.2", "tsup": "^8.1.0", "typedoc": "^0.26.3", "typescript": "^5.5.3" }, "prettier": { "semi": true, "trailingComma": "all", "singleQuote": true, "printWidth": 100 } }