mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
78 lines
3.0 KiB
JSON
78 lines
3.0 KiB
JSON
{
|
|
"name": "zk-kit",
|
|
"description": "A monorepo of reusable libraries for zero-knowledge technologies.",
|
|
"license": "MIT",
|
|
"repository": "git@github.com:privacy-scaling-explorations/zk-kit.git",
|
|
"homepage": "https://github.com/privacy-scaling-explorations/zk-kit",
|
|
"bugs": "https://github.com/privacy-scaling-explorations/zk-kit/issues",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "yarn build:libraries && yarn compile:contracts",
|
|
"build:libraries": "yarn workspaces foreach -A -t --no-private run build",
|
|
"compile:contracts": "yarn workspaces foreach -A run compile",
|
|
"test": "yarn test:libraries && yarn test:contracts && yarn test:circuits",
|
|
"test:libraries": "jest --coverage",
|
|
"test:library": "jest packages/${0}",
|
|
"test:circuits": "yarn workspace @zk-kit/circuits test",
|
|
"test:contracts": "yarn workspace imt.sol test:coverage",
|
|
"version:bump": "yarn workspace @zk-kit/${0} version ${1} && git commit -am \"chore(${0}): v${1}\" && git tag ${0}-v${1}",
|
|
"version:publish": "yarn workspaces foreach -A --no-private npm publish --tolerate-republish --access public",
|
|
"version:release": "changelogithub",
|
|
"lint": "eslint . --ext .js,.ts && yarn workspace imt.sol lint",
|
|
"prettier": "prettier -c .",
|
|
"prettier:write": "prettier -w .",
|
|
"benchmarks": "rimraf benchmarks/results && ts-node benchmarks/index.ts",
|
|
"docs": "typedoc --cname zkkit.pse.dev --githubPages true",
|
|
"precommit": "lint-staged",
|
|
"postinstall": "husky install"
|
|
},
|
|
"keywords": [
|
|
"javascript",
|
|
"typescript",
|
|
"monorepo",
|
|
"zero-knowledge",
|
|
"zk-snarks",
|
|
"circom"
|
|
],
|
|
"workspaces": [
|
|
"packages/*",
|
|
"packages/*/contracts"
|
|
],
|
|
"packageManager": "yarn@4.1.0",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.6.1",
|
|
"@commitlint/config-conventional": "^18.6.2",
|
|
"@types/glob": "^7.2.0",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
"@typescript-eslint/parser": "^7.0.2",
|
|
"benny": "^3.7.1",
|
|
"changelogithub": "patch:changelogithub@npm%3A0.13.3#~/.yarn/patches/changelogithub-npm-0.13.3-1783949906.patch",
|
|
"commitizen": "^4.3.0",
|
|
"cz-git": "^1.9.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-airbnb-typescript": "^17.1.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^27.9.0",
|
|
"husky": "^9.0.11",
|
|
"jest": "^29.7.0",
|
|
"jest-config": "^29.7.0",
|
|
"lint-staged": "^15.2.2",
|
|
"prettier": "^3.2.5",
|
|
"rimraf": "^5.0.5",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-node": "^10.9.2",
|
|
"tslib": "^2.6.2",
|
|
"typedoc": "^0.25.8",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-git"
|
|
}
|
|
}
|
|
}
|