-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
41
42
43
44
{
"name": "blu-transmogrifier",
"version": "1.0.0",
"main": "dist/main.js",
"devDependencies": {
"@tsconfig/node20": "20.1.2",
"@types/archiver": "6.0.2",
"@types/node": "20.10.4",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"archiver": "6.0.1",
"bun": "1.0.15",
"bun-types": "1.0.15",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"prettier": "3.1.0",
"protobufjs": "7.2.5",
"protobufjs-cli": "1.1.2",
"typescript": "5.2.2"
},
"description": "Firmware builder",
"files": [
"dist"
],
"keywords": [
"OpenHaystack",
"firmware"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist",
"prebuild": "bun run test && bun run type:check && bun run lint && bun run clean && bun run type:build",
"build": "bun build ./src/main.ts --outdir=./dist --target=node --minify",
"protobuf:compile": "pbjs --es6 --wrap es6 --target static-module --out src/protobuf/dfu.js src/protobuf/dfu.proto",
"protobuf:compile:type": "pbts --out src/protobuf/dfu.d.ts src/protobuf/dfu.js",
"protobuf:build": "bun run protobuf:compile && bun run protobuf:compile:type",
"lint": "eslint src --ext .ts",
"type:check": "tsc",
"type:build": "tsc --noEmit false --emitDeclarationOnly",
"test": "bun test"
},
"types": "dist/main.d.ts"
}