-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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": "proto_ts_schema",
"version": "1.0.1",
"description": "proto to ts schema compiler/transpiler.",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dist-run": "tsc && node .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iambpn/proto_to_ts_schema.git"
},
"keywords": [
"proto",
"protobuf",
"typescript",
"interface",
"proto-to-interface",
"proto-to-ts-interface",
"nest-proto-interface",
"typescript-interface",
"proto-definition",
"Protocol Buffers",
"proto-transpiler",
"proto-to-ts-transpiler"
],
"author": "Bipin Maharjan",
"license": "ISC",
"bugs": {
"url": "https://github.com/iambpn/proto_to_ts_schema/issues"
},
"homepage": "https://github.com/iambpn/proto_to_ts_schema#readme",
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/node": "^18.11.18",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"command-line-args": "^5.2.1"
},
"bin": {
"p2ti": "./bin/RunCli.js"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"./dist/**/*",
"./src/**/*",
"./bin/**/*"
]
}