-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
60 lines (60 loc) · 1.4 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
{
"name": "twirp-ts",
"version": "2.5.0",
"description": "Typescript implementation of the Twirp protocol",
"main": "build/twirp/index.js",
"bin": {
"protoc-gen-twirp_ts": "./protoc-gen-twirp_ts"
},
"repository": {
"url": "https://github.com/hopin-team/twirp-ts"
},
"scripts": {
"build": "tsc",
"format": "prettier -w src/**/*.ts",
"lint": "prettier -c src/**/*.ts",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"Twirp",
"Typescript"
],
"author": "Fabrizio Fenoglio",
"license": "MIT",
"dependencies": {
"@protobuf-ts/plugin-framework": "^2.0.7",
"camel-case": "^4.1.2",
"dot-object": "^2.1.4",
"path-to-regexp": "^6.2.0",
"ts-poet": "^4.5.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@protobuf-ts/plugin": "^2.5.0",
"@types/dot-object": "^2.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/supertest": "^2.0.11",
"http-terminator": "^3.0.0",
"jest": "^27.0.4",
"openapi-types": "^9.1.0",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-proto": "^1.81.3",
"typescript": "^4.3.2"
},
"peerDependencies": {
"@protobuf-ts/plugin": "^2.5.0",
"ts-proto": "^1.81.3"
},
"peerDependenciesMeta": {
"@protobuf-ts/plugin": {
"optional": true
},
"ts-proto": {
"optional": true
}
}
}