{ "name": "meshcore", "version": "1.0.0", "description": "MeshCore protocol support for Typescript", "keywords": [ "MeshCore", "LoRa", "Mesh" ], "repository": { "type": "git", "url": "git+https://git.maze.io/ham/meshcore.js" }, "license": "MIT", "author": "Wijnand Modderman-Lenstra", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --out-dir dist", "dev": "tsup src/index.ts --format cjs,esm --dts --watch --out-dir dist", "clean": "rm -rf dist", "test": "vitest", "test:watch": "vitest --watch", "test:ci": "vitest --run", "lint": "eslint .", "prepare": "npm run build" }, "dependencies": { "@noble/ciphers": "^2.1.1", "@noble/curves": "^2.0.1", "@noble/ed25519": "^3.0.0", "@noble/hashes": "^2.0.1" }, "devDependencies": { "@eslint/js": "^10.0.1", "@vitest/coverage-v8": "^4.0.18", "eslint": "^10.0.3", "globals": "^17.4.0", "tsup": "^8.5.1", "typescript": "^5.9.3", "typescript-eslint": "^8.57.0", "vitest": "^4.0.18" } }