-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "pb-to-ts-api",
"version": "1.0.5",
"description": "help you transfer protobuf file to your custom d.ts and api request method",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack.config.js --watch",
"build": "webpack --config webpack.config.js",
"lint:fix": "eslint --ext .ts ./ --fix --cache"
},
"keywords": [
"pb",
"protobuf",
"ts",
"mock"
],
"bin": {
"pb2TSApi": "./dist/cli.js",
"pb-to-ts-api": "./dist/cli.js"
},
"author": "xingbofeng",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"express": "^4.18.2",
"glob": "^9.2.1",
"json-schema-faker": "^0.5.0-rcv.46",
"minimist": "^1.2.8",
"mkdirp": "^2.1.5",
"protobufjs": "^7.2.2",
"protobufjs-cli": "^1.1.1",
"ts-morph": "^17.0.1",
"typescript-json-schema": "^0.55.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/express": "^4.17.17",
"@types/minimist": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-loader": "^9.1.2",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-webpack-plugin": "^4.0.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.2",
"type-fest": "^3.6.1",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
}
}