forked from konsumer/rawproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.91 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
{
"name": "rawproto",
"version": "1.0.0",
"description": "Guess structure of protobuf binary from raw data",
"type": "module",
"source": "./src/index.js",
"exports": {
"require": "./dist/rawproto.cjs",
"default": "./dist/rawproto.modern.js"
},
"main": "./dist/rawproto.cjs",
"module": "./dist/rawproto.module.js",
"unpkg": "./dist/rawproto.umd.js",
"bin": {
"rawproto": "rawproto_cli.js"
},
"dependencies": {
"flat": "^6.0.1",
"get-stdin": "^9.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.5.3",
"@vitest/ui": "^1.6.0",
"microbundle": "^0.15.1",
"vitest": "^1.5.3"
},
"scripts": {
"test": "vitest run --globals --reporter verbose --coverage --coverage.include src/**/*.js",
"test:watch": "vitest --globals --reporter verbose --ui",
"prepublishOnly": "npm run build",
"build": "microbundle",
"start": "cd ui && npm ci && npm start",
"release:blob": "npm run build && NODE_NO_WARNINGS=1 node --experimental-sea-config sea-config.json",
"release:mac": "mkdir -p releases/mac && npm run release:blob && cp $(command -v node) releases/mac/rawproto && chmod 755 releases/mac/rawproto && codesign --remove-signature releases/mac/rawproto && npx -y postject@latest releases/mac/rawproto NODE_SEA_BLOB rawproto.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 --macho-segment-name NODE_SEA && codesign --sign - releases/mac/rawproto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konsumer/rawproto.git"
},
"keywords": [
"protobuf",
"decode",
"reverse-engineer",
"binary",
"raw"
],
"author": "David Konsumer <konsumer@jetboystudio.com> (http://konsumer.js.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/konsumer/rawproto/issues"
},
"homepage": "https://rawproto.konsumer.js.org",
"files": [
"dist/*",
"src/react.jsx"
]
}