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

52 lines
1.2 KiB
JSON
Raw Normal View History

{
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"
]
}
},
"scripts": {
"prebuild": "rm -rf dist",
2022-06-10 15:46:38 +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-06-04 11:09:49 +00:00
"clean": "rm -rf node_modules && rm -rf dist",
"proto": "run-s 'proto:*'",
"proto:lint": "buf lint",
"proto:build": "buf generate"
},
"dependencies": {
2022-06-02 10:10:53 +00:00
"ethereum-cryptography": "^1.0.3",
2022-05-19 13:37:46 +00:00
"js-waku": "^0.23.0",
"long": "^5.2.0",
2022-06-02 10:10:53 +00:00
"protobufjs": "^6.11.3",
"protons-runtime": "^1.0.4"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"protons": "^3.0.4"
}
}