Files
zk-chat/package.json
Kaylee George 06bc80bb1b update
2023-04-10 01:19:33 -07:00

97 lines
2.9 KiB
JSON

{
"name": "zk-chat",
"version": "0.0.1",
"description": "decentralized p2p chat library",
"scripts": {
"build": "rollup --config rollup.config.mjs",
"test": "jest",
"test:debug": "jest --silent=false",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js",
"format": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js --fix"
},
"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.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"directories": {
"dist": "./dist",
"src": "./src",
"test": "./tests"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"16": "^0.0.2",
"@ethersproject/providers": "^5.7.2",
"@metamask/detect-provider": "^2.0.0",
"@nodeutils/defaults-deep": "^1.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@rollup/plugin-replace": "^5.0.2",
"@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",
"js-waku": "^0.30.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"protons-runtime": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rlnjs": "^2.0.6",
"uint8arrays": "^4.0.3"
},
"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",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-wasm": "^6.1.2",
"@types/chai": "^4.3.4",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.19",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.51.0",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"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-copy": "^3.4.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-visualizer": "^5.9.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}