-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1 KB
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
{
"name": "binpat",
"version": "0.1.3",
"type": "module",
"description": "Parse binary data using declarative patterns.",
"keywords": [
"binary",
"pattern",
"schema",
"parser",
"DataView"
],
"main": "dist/binpat.js",
"module": "dist/binpat.js",
"types": "dist/binpat.d.ts",
"files": [
"dist"
],
"scripts": {
"transpile": "tsc -d -t esnext -m esnext --lib esnext,dom binpat.ts --outDir dist",
"minify": "terser dist/binpat.js --compress --mangle --module -o dist/binpat.js",
"build": "npm run transpile && npm run minify",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizhenye/binpat.git"
},
"author": "Zhenye Wei",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizhenye/binpat/issues"
},
"homepage": "https://github.com/weizhenye/binpat#readme",
"devDependencies": {
"terser": "^5.39.0",
"typescript": "^5.8.2"
}
}