Files
zk-nullifier-sig/javascript/package.json
Sergey Kaunov 7893200dc9 Copy keywords from the crate (#108)
> ...
so, I will take the tags from a create, btw
>> and the npm js package has no keywords, if we can add some for indexing, that would be great
2024-04-17 21:34:21 +03:00

45 lines
1.2 KiB
JSON

{
"name": "plume-sig",
"version": "2.0.9",
"keywords": ["nullifier", "zero-knowledge", "ECDSA", "PLUME"],
"repository": "https://github.com/plume-sig/zk-nullifier-sig/",
"pnpm": {
"overrides": {
"@noble/secp256k1": "$@noble/secp256k1"
}
},
"engines": {
"node": ">=16 <19"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/js-sha512": "^0",
"@types/node": "^18.11.9",
"@types/nodemon": "^1.19.2",
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"prettier": "^3.0.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@noble/secp256k1": "^1.7.0",
"amcl-js": "^3.1.0",
"js-sha256": "^0.10.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "nodemon",
"build": "tsc -p tsconfig.build.json",
"prettier": "prettier -c . --config ../.prettierrc --ignore-path ../.prettierignore",
"prettier:fix": "prettier -w . --config ../.prettierrc --ignore-path ../.prettierignore",
"types": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"test:coverage": "pnpm run test --coverage",
"publish": "pnpm run build && pnpm publish"
}
}