UNPKG

aes-universal-native

Version:
62 lines (61 loc) 1.43 kB
{ "name": "aes-universal-native", "version": "0.1.9", "description": "Native implementation of aes-universal", "type": "module", "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" } }, "files": [ "dist" ], "scripts": { "build": "npm run typecheck && vite build", "test": "vitest --run", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit", "prepublishOnly": "npm test && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/higayasuo/aes-universal-native.git" }, "keywords": [ "aes-universal", "aes", "universal", "native", "expo", "crypto", "forge", "node-forge", "cbc", "gcm" ], "author": "Yasuo Higa", "license": "MIT", "bugs": { "url": "https://github.com/higayasuo/aes-universal-native/issues" }, "homepage": "https://github.com/higayasuo/aes-universal-native#readme", "devDependencies": { "@types/node": "^20.11.24", "@types/node-forge": "1.3.11", "aes-universal-node": "^0.1.9", "typescript": "^5.3.3", "vite": "^5.1.4", "vite-plugin-dts": "^4.5.3", "vitest": "^1.3.1" }, "peerDependencies": { "aes-universal": "^0.1.9", "node-forge": "^1.3.1" } }