-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.78 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
{
"name": "@xmtp/proto",
"version": "0.0.0-development",
"description": "Protobuf client and generated classes for GRPC API",
"main": "./ts/dist/cjs/node.js",
"module": "./ts/dist/esm/node.js",
"types": "./ts/dist/types/index.d.ts",
"browser": "./ts/dist/esm/index.js",
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "./dev/ts/clean cjs && tsc -p ./ts/tsconfig.cjs.json",
"build:esm": "./dev/ts/clean esm && tsc -p ./ts/tsconfig.esm.json",
"build:types": "./dev/ts/clean types && tsc -p ./ts/tsconfig.types.json",
"clean": "rm -rf ./ts/dist",
"generate": "./dev/ts/generate",
"prebuild": "npm run generate",
"prepare": "husky install",
"pretest": "npm run build",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"typescript": "^4.6.4",
"test": "node ./ts/dist/cjs/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"ts/dist"
],
"keywords": [
"xmtp",
"messaging",
"web3",
"sdk",
"js",
"javascript",
"node",
"nodejs"
],
"author": "XMTP Labs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xmtp/proto/issues"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/xmtp/proto.git"
},
"homepage": "https://github.com/xmtp/proto#readme",
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.0",
"semantic-release": "^19.0.3",
"typescript": "^4.6.4"
},
"dependencies": {
"long": "^5.2.0",
"protobufjs": "^7.0.0",
"rxjs": "^7.8.0",
"undici": "^5.8.1"
}
}