@alessiofrittoli/crypto-signature
Version:
Lightweight TypeScript Signatures library
109 lines (108 loc) • 3.4 kB
JSON
{
"name": "@alessiofrittoli/crypto-signature",
"version": "2.2.0",
"description": "Lightweight TypeScript Signatures library",
"author": {
"name": "Alessio Frittoli",
"email": "info@alessiofrittoli.it",
"url": "https://alessiofrittoli.it"
},
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/alessiofrittoli"
}
],
"keywords": [
"nodejs",
"signatures",
"digital-signatures"
],
"homepage": "https://github.com/alessiofrittoli/crypto-signature#readme",
"bugs": {
"url": "https://github.com/alessiofrittoli/crypto-signature/issues",
"email": "info@alessiofrittoli.it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alessiofrittoli/crypto-signature.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./error": {
"types": "./dist/error.d.ts",
"import": "./dist/error.mjs",
"require": "./dist/error.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.mjs",
"require": "./dist/types.js"
}
},
"sideEffects": false,
"scripts": {
"//1a": "*********************************************************************",
"//1b": "*********************** BUILD - LINT - RELEASE **********************",
"//1c": "*********************************************************************",
"build": "pnpm lint && pnpm test:ci && tsup",
"build:watch": "tsup --watch",
"lint": "eslint",
"release": "node scripts/publish.js --verbose --npm",
"//2a": "*********************************************************************",
"//2b": "***************************** UNIT TESTS ****************************",
"//2c": "*********************************************************************",
"test": "jest --verbose",
"test:watch": "jest --watchAll --verbose",
"test:ci": "jest --ci --verbose",
"//3a": "*********************************************************************",
"//3b": "************************ UNIT TESTS COVERAGE ************************",
"//3c": "*********************************************************************",
"test:coverage": "pnpm test:watch --coverage",
"test:ci:coverage": "pnpm test:ci --coverage",
"test:serve-coverage": "http-server ./coverage/lcov-report --gzip true -p 0 -o --silent",
"test:coverage:serve": "concurrently --prefix none --kill-others \"pnpm test:coverage\" \"pnpm test:serve-coverage\""
},
"devDependencies": {
"@alessiofrittoli/node-scripts": "^2.4.0",
"@eslint/js": "^9.23.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.11",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"dependencies": {
"@alessiofrittoli/crypto-algorithm": "^2.2.0",
"@alessiofrittoli/crypto-buffer": "^3.5.0",
"@alessiofrittoli/crypto-key": "^3.1.0",
"@alessiofrittoli/exception": "^2.5.0",
"@alessiofrittoli/type-utils": "^1.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@alessiofrittoli/type-utils",
"esbuild"
]
}
}