-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@qrpc/quiver",
"version": "0.0.7",
"type": "module",
"types": "build/index.d.ts",
"module": "build/index.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/killthebuddh4/quiver.git"
},
"scripts": {
"dev": "tsc --watch --preserveWatchOutput",
"test": "mocha build/**/*.test.js",
"test:e2e": "mocha build/**/e2e.test.js",
"test:router": "mocha build/**/router.test.js",
"test:xmtp": "mocha build/**/xmtp.test.js",
"test:example": "mocha build/**/example.test.js",
"lint": "eslint .",
"format": "prettier --check .",
"types": "tsc --noEmit",
"build": "npm run clean && tsc",
"clean": "rm -rf ./build"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.8.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chalk": "^5.3.0",
"eslint": "^8.53.0",
"mocha": "^10.4.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"tsconfig": "*",
"typescript": "^5.2.2"
},
"dependencies": {
"@ethersproject/wallet": "^5.7.0",
"@xmtp/xmtp-js": "latest",
"npm": "^10.9.1",
"zustand": "^5.0.1"
}
}