mirror of
https://github.com/kayleegeorge/zk-chat.git
synced 2026-01-13 16:18:08 -05:00
95 lines
2.7 KiB
JSON
95 lines
2.7 KiB
JSON
{
|
|
"name": "zk-chat",
|
|
"version": "0.0.1",
|
|
"description": "decentralized p2p chat library",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:debug": "jest --silent=false",
|
|
"build": "rollup --config rollup.config.mjs",
|
|
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kayleegeorge/zk-chat.git"
|
|
},
|
|
"author": "krgeorge",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/kayleegeorge/zk-chat/issues"
|
|
},
|
|
"homepage": "https://github.com/kayleegeorge/zk-chat#readme",
|
|
"main": "./dist/index.node.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.node.js"
|
|
},
|
|
"directories": {
|
|
"dist": "./dist",
|
|
"src": "./src",
|
|
"test": "./tests"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"src/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"dependencies": {
|
|
"@ethersproject/providers": "^5.7.2",
|
|
"@metamask/detect-provider": "^2.0.0",
|
|
"@nodeutils/defaults-deep": "^1.1.0",
|
|
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
|
|
"@semaphore-protocol/identity": "^2.6.1",
|
|
"@types/styled-components": "^5.1.26",
|
|
"@waku/proto": "^0.0.1",
|
|
"@waku/rln": "^0.0.12",
|
|
"@zk-kit/identity": "^1.4.1",
|
|
"@zk-kit/protocols": "^1.11.1",
|
|
"crypto-js": "^4.1.1",
|
|
"dotenv": "^16.0.3",
|
|
"ethers": "^5.7.2",
|
|
"js-waku": "^0.30.0",
|
|
"protons-runtime": "^5.0.0",
|
|
"rlnjs": "github:Rate-Limiting-Nullifier/rlnjs",
|
|
"ts-node": "^10.9.1",
|
|
"uint8arrays": "^4.0.3",
|
|
"@ethersproject/bytes": "^5.6.1",
|
|
"@ethersproject/solidity": "^5.6.1",
|
|
"@ethersproject/strings": "^5.6.1",
|
|
"@zk-kit/incremental-merkle-tree": "^0.4.3",
|
|
"ffjavascript": "0.2.55",
|
|
"poseidon-lite": "^0.0.2",
|
|
"snarkjs": "^0.4.22"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
|
|
"@nomiclabs/hardhat-ethers": "^2.2.1",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/node": "^18.11.19",
|
|
"@types/react": "^18.0.26",
|
|
"@typescript-eslint/eslint-plugin": "^5.50.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-import-resolver-typescript": "^3.5.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"hardhat": "^2.12.4",
|
|
"jest": "^29.3.1",
|
|
"prettier": "^2.8.1",
|
|
"protons": "^7.0.2",
|
|
"rollup": "^3.15.0",
|
|
"rollup-plugin-cleaner": "^1.0.0",
|
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-loader": "^9.4.1",
|
|
"tslib": "^2.5.0",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|