-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
57
58
59
60
61
62
{
"name": "proto-message-helper",
"version": "0.0.1",
"description": "A protobuf message (binary) viewer tool which provide the better output.",
"module": "dist/index.js",
"typings": "typings",
"scripts": {
"start": "rollup -c -w",
"dev": "pnpm start",
"test": "jest --coverage",
"build": "node ./esbuild.mjs && tsc",
"build:pages": "NODE_ENV=production BASEDIR=docs rollup -c",
"prepublish": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RexSkz/proto-message-helper.git"
},
"keywords": [
"protobuf",
"message",
"binary",
"viewer",
"helper"
],
"author": "Rex Zeng <rex@rexskz.info>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RexSkz/proto-message-helper/issues"
},
"homepage": "https://github.com/RexSkz/proto-message-helper#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^27.5.2",
"@types/node": "^20.11.24",
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17",
"esbuild": "^0.15.2",
"esbuild-jest": "^0.5.0",
"esbuild-plugin-less": "^1.1.9",
"fork-me-on-github": "^1.0.6",
"jest": "^27.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.77.3",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-string": "^3.0.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.2.0 || ^17.0.0 || ^16.0.0",
"react-dom": "^18.2.0 || ^17.0.0 || ^16.0.0"
},
"dependencies": {
"buffer": "^6.0.3",
"proto-parser": "^0.0.8"
}
}