aes-cmac
Version:
AES-CMAC implementation in typescript
56 lines (55 loc) • 1.34 kB
JSON
{
"name": "aes-cmac",
"version": "4.0.0",
"main": "lib/aes-cmac.cjs",
"module": "lib/aes-cmac.mjs",
"description": "AES-CMAC implementation in typescript",
"scripts": {
"lint": "tsc",
"build": "rollup --config rollup.config.mjs",
"test": "node --import tsx --test test/**/*.test.ts",
"example": "tsx examples/example.ts",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
},
"engines": {
"node": ">=20.19.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rosek86/aes-cmac.git"
},
"keywords": [
"aes-cmac"
],
"author": "Krzysztof Rosinski",
"license": "MIT",
"bugs": {
"url": "https://github.com/rosek86/aes-cmac/issues"
},
"homepage": "https://github.com/rosek86/aes-cmac/#readme",
"files": [
"lib/**/*",
"test/**/*"
],
"exports": {
"import": {
"types": "./lib/aes-cmac.d.mts",
"default": "./lib/aes-cmac.mjs"
},
"require": {
"types": "./lib/aes-cmac.d.cts",
"default": "./lib/aes-cmac.cjs"
}
},
"devDependencies": {
"@types/node": "^20.17.50",
"esbuild": "^0.25.4",
"prettier": "^3.5.3",
"rollup": "^4.41.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}