-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 839 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@killthebuddha/brpc",
"type": "module",
"types": "build/index.d.ts",
"module": "build/index.js",
"files": [
"build"
],
"scripts": {
"dev": "tsc --watch --preserveWatchOutput",
"test": "mocha build/**/*.test.js",
"lint": "eslint .",
"format": "prettier --check .",
"types": "tsc --noEmit",
"build": "npm run clean && tsc",
"clean": "rm -rf ./build"
},
"devDependencies": {
"@ethersproject/wallet": "^5.7.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"mocha": "^10.4.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"tsconfig": "*",
"typescript": "^5.2.2"
},
"dependencies": {
"@xmtp/xmtp-js": "^11.2.1"
}
}