Files
zk-kit/package.json
cedoor f81e0f3bba chore: add some type definitions
Former-commit-id: 00c9562a7144e6dc7c7092e58dd51051836dd657 [formerly 72c9ff1e7e2564e64bf83d95b589890a93c18d4d] [formerly c6ef2aea08d7f4731c002d0056b6ab44db58b5db [formerly e3853c0c8a4f85155f315ba82e3772701f751385]] [formerly aa28c36a1f5471354316daad4001e44a77dfd63c [formerly 6172ce5c4baf3e093fc89cb804b2555d32aa5d88] [formerly aff0f73854f8a424d0f0c6fbc9e7c462bea00386 [formerly 91e8fc3823]]]
Former-commit-id: 2ebdd90593562dbfb35da288b4d7004914b9b088 [formerly b7614af98b123314333fc5003421fa8e9da527e1] [formerly bead48a73088adf76912d6da8300309f2f6fa945 [formerly f61bc088796d418c32a37f3d6123dcbfc8122a8e]]
Former-commit-id: 05ec67d3697355bc5dd07091a78eb34cd4d0707f [formerly 3c66cce9620013407f1d8f9f1ba1d297f90c54db]
Former-commit-id: 2297752ba38d24106f033e147bc137b79113b7ec
2022-01-30 22:56:28 +01:00

81 lines
2.5 KiB
JSON

{
"name": "zk-kit",
"description": "A monorepo of reusable JS libraries for zero-knowledge technologies.",
"license": "MIT",
"repository": "git@github.com:appliedzkp/zk-kit.git",
"homepage": "https://github.com/appliedzkp/zk-kit",
"bugs": "https://github.com/appliedzkp/zk-kit/issues",
"private": true,
"scripts": {
"install": "yarn bootstrap && yarn build",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run --parallel build:watch -- -- --watch",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "yarn lint && yarn test",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"benchmarks": "rimraf benchmarks/results && ts-node benchmarks/index.ts",
"publish:fp": "lerna publish from-package",
"docs": "lerna run docs",
"clean": "lerna clean",
"commit": "cz",
"precommit": "lint-staged"
},
"keywords": [
"javascript",
"typescript",
"monorepo",
"zero-knowledge",
"zk-snarks",
"circom"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^27.4.6",
"benny": "^3.7.1",
"circomlibjs": "^0.0.8",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"incrementalquintree": "^1.0.9",
"jest": "^27.4.1",
"jest-config": "^27.4.7",
"lerna": "^4.0.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.64.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}