-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "proto2api",
"version": "0.0.8",
"description": "Convert proto file to api file",
"bin": {
"proto2api": "./bin/index"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/yuexing0921/proto2api"
},
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"dev": "tsc --watch",
"test": "jest",
"build": "tsc"
},
"keywords": [
"proto"
],
"author": "yuexing <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^9.0.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"prettier": "^2.5.1",
"protobufjs": "^6.11.2",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/prettier": "^2.4.3",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"typescript": "^4.5.4"
}
}