forked from cheqd/ts-proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "@cheqd/ts-proto",
"version": "3.1.2",
"description": "A TypeScript package for all transpiled cheqd ProtoBuf definitions.",
"main": "index.js",
"type": "module",
"files": [
"cheqd/**/*",
"cosmos/**/*",
"cosmos_proto/**/*",
"gogoproto/**/*",
"google/**/*",
"LICENSE",
"package.json",
"README.md"
],
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:proto-gen && npm run build:ts",
"build:proto-gen": "buf generate buf.build/cheqd/proto",
"build:ts": "tsc",
"loosely-check": "npx loose-ts-check --auto-update",
"loosely-check-fix": "npx loose-ts-check --auto-fix",
"loosely-build": "tsc --noEmit | npx loose-ts-check --auto-update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheqd/ts-proto.git"
},
"homepage": "https://github.com/cheqd/ts-proto#readme",
"keywords": [
"cheqd",
"proto",
"buf",
"typescript",
"sdk"
],
"bugs": {
"url": "https://github.com/cheqd/ts-proto/issues"
},
"dependencies": {
"long": "^5.2.1",
"protobufjs": "^7.2.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/long": "^5.0.0",
"@types/node": "^18.14.6",
"conventional-changelog-conventionalcommits": "^5.0.0",
"loose-ts-check": "^1.3.0",
"semantic-release": "^20.1.1",
"typescript": "^4.9.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}