Files
zk-nullifier-sig/javascript/package.json
Anton 79c602670b chore: clean up (#74)
* chore: clean up

- [x] Add checks for ci actions
- [x] Run prettier, clippy, fmt commands for all the files
- [x] Move circom circuits to a circom folder
- [x] Get rid of js var statements

* chore: add resolver version for cargo.toml

* chore: add circom tests

* chore: optimize check triggers

* chore: remove `check` command

* chore: use only `pnpm`

* chore: update readme

---------

Co-authored-by: 0xmad <0xmad@users.noreply.github.com>
2023-11-18 20:48:24 +03:00

43 lines
1.1 KiB
JSON

{
"name": "plume-sig",
"version": "2.0.3",
"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"
}
}