package.json (1239B)
1 { 2 "name": "@radroots/utils", 3 "version": "0.0.1", 4 "private": true, 5 "license": "GPLv3", 6 "type": "module", 7 "main": "./dist/cjs/index.js", 8 "module": "./dist/esm/index.js", 9 "types": "./dist/types/index.d.ts", 10 "exports": { 11 ".": { 12 "types": "./dist/types/index.d.ts", 13 "import": "./dist/esm/index.js", 14 "require": "./dist/cjs/index.js" 15 } 16 }, 17 "scripts": { 18 "build:esm": "tsc -p tsconfig.esm.json", 19 "build:cjs": "tsc -p tsconfig.cjs.json", 20 "build": "npm run clean && npm run build:esm && npm run build:cjs", 21 "prebuild": "npm run clean", 22 "clean": "rimraf dist", 23 "dev": "npm run watch", 24 "watch": "tsc -w" 25 }, 26 "devDependencies": { 27 "@radroots/tsconfig": "workspace:*", 28 "@types/node": "^22.13.1", 29 "@types/uuid": "^10.0.0", 30 "rimraf": "^6.0.1", 31 "typescript": "5.8.3" 32 }, 33 "publishConfig": { 34 "access": "public" 35 }, 36 "dependencies": { 37 "@radroots/types-bindings": "workspace:*", 38 "@noble/curves": "^1.6.0", 39 "@noble/hashes": "^1.4.0", 40 "convert": "^5.5.1", 41 "uuid": "^11.1.0", 42 "zod": "^4.0.5" 43 } 44 }