-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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": "@commaai/qdl",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"main": "dist/qdl.js",
"types": "dist/qdl.d.ts",
"exports": {
".": {
"types": "./dist/qdl.d.ts",
"import": "./dist/qdl.js"
},
"./usblib": {
"types": "./dist/usblib.d.ts",
"import": "./dist/usblib.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js"
}
},
"scripts": {
"build": "tsc",
"postinstall": "bun run build",
"lint": "biome lint"
},
"bin": {
"simg2img.js": "scripts/simg2img.js"
},
"//devDependencies": {
"@biomejs/biome": "code linter and formatter",
"@happy-dom/global-registrator": "happy-dom is used by tests involving browser APIs, like DOMParser",
"@types/w3c-web-usb": "type information for the WebUSB APIs"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@happy-dom/global-registrator": "^16.7.2",
"@types/bun": "latest",
"@types/w3c-web-usb": "^1.0.10"
},
"//dependencies": {
"crc-32": "crc32s are used in the gpt header calculations",
"fast-xml-parser": "parse XML to JS object, fast, works in browser and node"
},
"dependencies": {
"crc-32": "^1.2.2",
"fast-xml-parser": "^5.0.8"
},
"//peerDependencies": {
"typescript": "does type checking, generates JS bundles and type declarations for language servers"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"trustedDependencies": [
"@biomejs/biome"
]
}