forked from xmtp/xmtp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@relaycc/xmtp-js",
"version": "0.1.5",
"description": "The XMTP client SDK for interacting with XMTP networks, with minor additions and modifications from the Relay team.",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"umd:main": "dist/umd/index.js",
"browser": "dist/umd/index.js",
"types": "dist/types/src/index.d.ts",
"scripts": {
"dev": "node tools/cleanup esm && tsc -p config/tsconfig.cjs.json --watch",
"prebench": "npm run build:cjs",
"bench": "node dist/cjs/bench/index.js",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"build:docs": "rm -rf docs && mkdir -p tmp && cp README.md tmp/ && sed -i.bak '/badge.svg/d' tmp/README.md && typedoc --excludePrivate --readme tmp/README.md src/index.ts",
"clean": "node tools/cleanup && npm run clean:proto",
"clean:proto": "rm -rf src/proto/*.ts",
"patch": "npm version patch -m 'patch: Bump version to %s'",
"pub": "rm -rf dist/ && npm run build && npm publish",
"package": "npm pack",
"prepublishOnly": "npm run build",
"test:setup": "./dev/up",
"test:teardown": "./dev/down",
"test": "npm run test:node",
"test:node": "jest --no-cache --env='node' --testTimeout=30000",
"test:jsdom": "jest --no-cache --env='./jest.jsdom.env.js' --testTimeout=30000",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "prettier --check . && eslint .",
"autolint": "prettier --write . && eslint --fix .",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"xmtp",
"messaging",
"web3",
"sdk",
"js",
"javascript",
"node",
"nodejs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https:git@github.com:relaycc/xmtp-js.git"
},
"release": {
"branches": [
"develop"
]
},
"dependencies": {
"@noble/secp256k1": "^1.5.2",
"@stardazed/streams-polyfill": "^2.4.0",
"@xmtp/proto": "^3.13.0",
"async-mutex": "^0.4.0",
"ethers": "^5.5.3",
"long": "^5.2.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@types/bl": "^5.0.2",
"@types/callback-to-async-iterator": "^1.1.4",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"benny": "^3.7.1",
"buffer": "^6.0.3",
"dd-trace": "^2.12.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.1",
"jest": "^27.2.0",
"prettier": "^2.4.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typedoc": "^0.22.11",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}