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

64 lines
1.5 KiB
JSON
Raw Normal View History

2021-09-13 05:54:05 +00:00
{
2022-05-24 10:42:05 +00:00
"name": "@status-im/js",
"version": "0.0.0",
"license": "MIT OR Apache-2.0",
"repository": {
"url": "https://github.com/status-im/status-web.git",
2022-05-23 12:57:01 +00:00
"directory": "packages/status-js",
"type": "git"
},
"bugs": {
"url": "https://github.com/status-im/status-web/issues"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
2022-06-01 05:39:47 +00:00
"targets": {
"main": {
"includeNodeModules": [
"protons-runtime",
"uint8arraylist"
]
}
},
2021-09-14 02:50:33 +00:00
"scripts": {
"prebuild": "rm -rf dist",
2022-06-01 05:39:47 +00:00
"dev": "parcel",
"build": "parcel build",
"build:vite": "vite build",
"build:types": "tsc --emitDeclarationOnly",
"build:protos": "protons protos/*.proto",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"format": "prettier --write src",
2022-04-18 14:54:40 +00:00
"clean": "rm -rf node_modules && rm -rf dist"
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",
"debug": "^4.3.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",
2022-06-02 10:10:53 +00:00
"ethereum-cryptography": "^1.0.3",
2021-09-14 05:16:40 +00:00
"js-sha3": "^0.8.0",
2022-05-19 13:37:46 +00:00
"js-waku": "^0.23.0",
"long": "^5.2.0",
2021-10-19 00:26:09 +00:00
"pbkdf2": "^3.1.2",
2022-06-02 10:10:53 +00:00
"protobufjs": "^6.11.3",
"protons-runtime": "^1.0.4",
2021-11-26 11:24:37 +00:00
"secp256k1": "^4.0.2",
2022-06-02 10:10:53 +00:00
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/elliptic": "^6.4.14",
"@types/pbkdf2": "^3.1.0",
"@types/secp256k1": "^4.0.3",
"@types/uuid": "^8.3.3",
"npm-run-all": "^4.1.5",
"protons": "^3.0.4",
"ts-node": "^10.2.1"
2021-09-13 05:54:05 +00:00
}
}