-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@bosonprotocol/chat-sdk",
"version": "1.3.1-alpha.8",
"description": "Extension of @xmtp/xmtp-js with support for chat threads and further message types.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && tsc --build tsconfig.cjs.json",
"clean": "rimraf dist coverage node_modules",
"start:receive": "npm run build && ts-node dist/cjs/example/index.js",
"start:send": "npm run build && ts-node dist/cjs/example/index2.js",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write .",
"test": "npm run test:all",
"test:all": "jest --detectOpenHandles --forceExit",
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules jest '/tests/unit/' --coverage=false",
"test:integration": "jest '/tests/integration/' --coverage=false --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosonprotocol/chat-sdk.git"
},
"author": "Boson Protocol",
"license": "Apache-2.0",
"files": [
"dist/*",
"src/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@xmtp/xmtp-js": "^8.2.0",
"ethers": "^5.7.2",
"valid-data-url": "^4.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"jest": "^29.3.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"volta": {
"node": "16.16.0",
"npm": "8.11.0"
}
}