forked from itanka9/json2pbf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 933 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
{
"name": "@2gis/json2pbf",
"version": "1.1.3",
"description": "Simple JSON <-> protobuf codec",
"module": "./dist/lib.mjs",
"main": "./dist/lib.js",
"types": "./dist/json2pbf.d.ts",
"scripts": {
"start": "vite demo",
"lib": "vite build -c lib.config.js",
"typings": "tsc ./src/json2pbf.ts --declaration --emitDeclarationOnly --outDir ./dist/",
"build": "npm run lib && npm run typings",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itanka9/json2pbf.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/itanka9/json2pbf/issues"
},
"homepage": "https://github.com/itanka9/json2pbf#readme",
"dependencies": {
"pbf": "^3.2.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@types/node": "^22.9.0",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}