57 lines
1.6 KiB
JSON
Raw Normal View History

2021-08-06 14:50:36 +02:00
{
2021-12-23 16:04:36 +11:00
"name": "@waku/vote-poll-sdk-core",
2021-12-23 16:09:45 +11:00
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
2021-08-06 14:50:36 +02:00
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
2022-01-20 11:33:24 +11:00
"version": "0.4.0",
2021-12-07 14:54:14 +11:00
"license": "MIT OR Apache-2.0",
2021-12-23 17:12:20 +11:00
"publishConfig": {
"access": "public"
},
"watch": {
"build": {
2021-12-24 12:12:48 +11:00
"patterns": [
"src"
],
"extensions": "ts,tsx",
"runOnChangeOnly": false
}
},
2021-08-06 14:50:36 +02:00
"scripts": {
"clean:all": "yarn clean && rimraf node_modules/",
"clean": "rimraf dist/",
"watch": "yarn npm-watch",
2021-08-06 14:50:36 +02:00
"build": "yarn run build:esm && yarn run build:cjs",
"build:esm": "tsc --module es2020 --target es2017 --outDir dist/esm",
"build:cjs": "tsc --outDir dist/cjs",
"test": "mocha -r jsdom-global/register",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './{src,test}/**/*.{ts,tsx}'",
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
2021-08-09 16:00:42 +02:00
"ethereum-waffle": "^3.4.0",
2021-08-06 14:50:36 +02:00
"jsdom": "^16.7.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.0.3",
"npm-watch": "^0.11.0",
2021-08-06 14:50:36 +02:00
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
2021-08-09 10:50:10 +02:00
"dependencies": {
2022-01-20 11:33:24 +11:00
"@waku/vote-sdk-contracts": "^0.4.0",
2021-08-12 16:37:21 +02:00
"eth-sig-util": "^3.0.1",
"ethers": "5.4.6",
2021-08-30 14:01:08 +02:00
"js-waku": "^0.11.0",
2021-08-09 14:53:39 +02:00
"protons": "^2.0.1"
2021-08-09 10:50:10 +02:00
}
2021-08-06 14:50:36 +02:00
}