-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "proto-to-ts-type",
"version": "0.1.3",
"description": "proto-to-ts-type",
"author": "yoshinari-yamanaka",
"license": "MIT",
"private": false,
"files": [
"build"
],
"repository": {
"url": "https://github.com/Yo-mah-Ya/proto-to-ts-type.git"
},
"keywords": [
"proto",
"protoc",
"protobuf",
"protocolbuffer",
"typescript"
],
"bin": {
"protoc-gen-ts-type": "./build/src/protoc-gen-ts-type"
},
"scripts": {
"build": "tsc -b && ./post_build.sh",
"test": "jest --coverage --passWithNoTests --maxWorkers=7",
"lint": "yarn eslint && yarn prettier",
"eslint": "eslint --fix './**/*.{ts,tsx}'",
"prettier": "prettier --write './**/*.{ts,js,md}'"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.7",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"google-protobuf": "^3.21.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"prettier": "^3.0.3",
"protobufjs": "^7.2.5"
}
}