UNPKG

aes-universal-node

Version:
53 lines (52 loc) 1.23 kB
{ "name": "aes-universal-node", "type": "module", "version": "0.1.10", "description": "Node.js implementation of aes-universal", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "scripts": { "build": "npm run typecheck && vite build", "test": "vitest --run", "typecheck": "tsc --noEmit", "prepublishOnly": "npm test && npm run build" }, "keywords": [ "aes", "universal", "node", "crypto", "encryption", "decryption", "cipher", "ciphertext" ], "author": "higayasuo", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/higayasuo/aes-universal-node.git" }, "bugs": { "url": "https://github.com/higayasuo/aes-universal-node/issues" }, "homepage": "https://github.com/higayasuo/aes-universal-node#readme", "devDependencies": { "@types/node": "^22.14.1", "typescript": "^5.8.3", "vite": "^6.2.6", "vite-plugin-dts": "^4.5.3", "vitest": "^3.1.1" }, "peerDependencies": { "aes-universal": "^0.1.10" } }