mirror of
https://github.com/tcsenpai/falconTS.git
synced 2025-06-01 09:10:09 +00:00
35 lines
786 B
JSON
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"
|
|
}
|
|
}
|