-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 882 Bytes
/
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
{
"name": "parcel-plugin-pbf-ts",
"version": "1.2.0",
"license": "MIT",
"description": "Protocol Buffers support in Parcel via Pbf with Typescript",
"author": {
"name": "Nahuel Santoalla",
"url": "https://github.com/meketh"
},
"repository": {
"url": "https://github.com/meketh/parcel-plugin-pbf-ts"
},
"keywords": [
"typescript",
"protocol-buffers",
"protobuf",
"binary",
"format",
"encode",
"decode",
"serialization"
],
"main": "./inxed.js",
"typings": "./inxed.d.ts",
"dependencies": {
"pbf": "^3.2.1",
"protocol-buffers-schema": "^3.4.0"
},
"devDependencies": {
"@types/pbf": "^3.0.2",
"@types/protocol-buffers-schema": "^3.4.0",
"parcel": "^1.12.4"
},
"peerDependencies": {
"@types/pbf": "^3.0.2",
"@types/protocol-buffers-schema": "^3.4.0",
"parcel": "^1.12.4"
}
}