63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "@status-im/js",
|
|
"version": "0.0.0",
|
|
"license": "MIT OR Apache-2.0",
|
|
"repository": {
|
|
"url": "https://github.com/status-im/status-web.git",
|
|
"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",
|
|
"targets": {
|
|
"main": {
|
|
"includeNodeModules": [
|
|
"protons-runtime",
|
|
"uint8arraylist"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rm -rf dist",
|
|
"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",
|
|
"clean": "rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"bn.js": "^5.2.0",
|
|
"buffer": "^6.0.3",
|
|
"debug": "^4.3.3",
|
|
"ecies-geth": "^1.5.3",
|
|
"elliptic": "^6.5.4",
|
|
"js-sha3": "^0.8.0",
|
|
"js-waku": "^0.23.0",
|
|
"long": "^5.2.0",
|
|
"pbkdf2": "^3.1.2",
|
|
"protons-runtime": "^1.0.4",
|
|
"secp256k1": "^4.0.2",
|
|
"uuid": "^8.3.2",
|
|
"protobufjs": "^6.11.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|