-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
25 lines (25 loc) · 986 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
{
"name": "@globalfishingwatch/pbf-decoders",
"version": "3.0.5",
"main": "./index.cjs",
"module": "./index.js",
"scripts": {
"decoders": "yarn build:prepare && yarn build:pb:vessels:js && yarn build:pb:vessels:ts && yarn build:pb:4wings-tile:js && yarn build:pb:4wings-tile:ts",
"build:prepare": "mkdir -p decoders",
"build:pb:vessels:js": "yarn pbjs proto/vessels.proto -t static-module -w commonjs -o decoders/vessels.js",
"build:pb:vessels:ts": "yarn pbts decoders/vessels.js -o decoders/vessels.d.ts",
"build:pb:4wings-tile:js": "yarn pbjs proto/4wings-tile.proto -t static-module -w commonjs -o decoders/4wings-tile.js",
"build:pb:4wings-tile:ts": "yarn pbts decoders/4wings-tile.js -o decoders/4wings-tile.d.ts",
"prepublish": "yarn build"
},
"dependencies": {
"long": "x"
},
"devDependencies": {
"pbf": "4.0.1",
"pbjs": "0.0.14",
"pbts-cli": "1.0.3",
"protobufjs": "^7.4.0",
"protobufjs-cli": "^1.1.3"
}
}