dappconnect-sdks/packages/status-communities/package.json

62 lines
1.9 KiB
JSON
Raw Normal View History

2021-09-13 05:54:05 +00:00
{
"name": "@waku/status-communities",
2021-09-14 05:16:40 +00:00
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"version": "0.1.0",
"repository": "https://github.com/status-im/wakuconnect-chat-sdk/",
2021-09-14 05:16:40 +00:00
"license": "MIT OR Apache-2.0",
2021-11-26 11:24:37 +00:00
"packageManager": "yarn@3.1.0",
2021-09-14 02:50:33 +00:00
"scripts": {
2021-09-14 05:16:40 +00:00
"build": "run-s 'build:*'",
"build:esm": "tsc --module es2020 --target es2017 --outDir dist/esm",
"build:cjs": "tsc --outDir dist/cjs",
2021-09-14 03:49:42 +00:00
"fix": "run-s 'fix:*'",
"fix:prettier": "prettier \"src/**/*.ts\" \"./*.json\" --write",
2021-09-14 02:50:33 +00:00
"fix:lint": "eslint src --ext .ts --fix",
2021-09-24 00:47:06 +00:00
"test": "run-s 'test:*'",
2021-09-14 02:50:33 +00:00
"test:lint": "eslint src --ext .ts",
2021-09-14 03:49:42 +00:00
"test:prettier": "prettier \"src/**/*.ts\" \"./*.json\" --list-different",
2021-09-24 00:47:06 +00:00
"test:unit": "mocha",
2021-09-14 02:50:33 +00:00
"proto": "run-s 'proto:*'",
"proto:lint": "buf lint",
"proto:build": "buf generate"
},
2021-09-13 05:54:05 +00:00
"devDependencies": {
2021-11-26 11:24:37 +00:00
"@types/bn.js": "^5.1.0",
2021-09-22 05:05:36 +00:00
"@types/chai": "^4.2.22",
2021-11-26 11:24:37 +00:00
"@types/elliptic": "^6.4.14",
2021-09-15 02:05:33 +00:00
"@types/mocha": "^9.0.0",
2021-10-19 00:26:09 +00:00
"@types/pbkdf2": "^3.1.0",
"@types/secp256k1": "^4.0.3",
2021-11-26 11:24:37 +00:00
"@types/uuid": "^8.3.3",
2021-09-14 03:49:42 +00:00
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
2021-09-14 05:16:40 +00:00
"chai": "^4.3.4",
2021-09-14 03:49:42 +00:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.7.0",
"eslint-plugin-import": "^2.24.2",
2021-09-14 05:16:40 +00:00
"mocha": "^9.1.1",
2021-09-14 02:50:33 +00:00
"npm-run-all": "^4.1.5",
2021-09-14 03:49:42 +00:00
"prettier": "^2.4.0",
2021-09-22 05:11:08 +00:00
"ts-node": "^10.2.1",
2021-09-14 02:50:33 +00:00
"ts-proto": "^1.83.0",
2021-09-13 05:54:05 +00:00
"typescript": "^4.4.3"
2021-09-14 02:50:33 +00:00
},
"dependencies": {
2021-11-26 11:24:37 +00:00
"bn.js": "^5.2.0",
2021-09-14 05:16:40 +00:00
"buffer": "^6.0.3",
2021-09-23 05:42:15 +00:00
"ecies-geth": "^1.5.3",
2021-11-26 11:24:37 +00:00
"elliptic": "^6.5.4",
2021-09-14 05:16:40 +00:00
"js-sha3": "^0.8.0",
2021-12-19 12:34:03 +00:00
"js-waku": "^0.14.2",
2021-10-19 00:26:09 +00:00
"pbkdf2": "^3.1.2",
"protobufjs": "^6.11.2",
2021-11-26 11:24:37 +00:00
"secp256k1": "^4.0.2",
"uuid": "^8.3.2"
2021-09-13 05:54:05 +00:00
}
}