falconTS/package.json
2025-04-11 11:38:54 +02:00

35 lines
786 B
JSON

{
"name": "falcon-ts",
"version": "1.0.0",
"description": "A TypeScript wrapper around the Falcon signature scheme with a custom mnemonic implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"example": "ts-node src/example.ts",
"mnemonic-example": "ts-node src/mnemonic_example.ts"
},
"keywords": [
"falcon",
"signature",
"cryptography",
"mnemonic",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"buffer": "^6.0.3",
"falcon-sign": "^1.0.4"
}
}