-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
45
46
47
48
49
50
51
52
{
"name": "barbarcode",
"version": "0.1.1",
"type": "module",
"main": "dist/server.cjs",
"bin": {
"barbarcode": "./dist/server.cjs"
},
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build:server": "tsc -p tsconfig.app.json",
"build:landing": "vite build --config landing.vite.config.ts",
"build": "vite build && pnpm run build:server",
"start": "node dist/server.cjs",
"dev": "vite",
"dev:landing": "vite --config landing.vite.config.ts",
"lint": "biome lint .",
"format": "biome format . --write",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"express": "^4.19.2",
"jquery": "^3.7.1",
"ngrok": "5.0.0-beta.2",
"qr": "^0.4.2",
"quagga": "^0.12.1",
"robotjs": "^0.6.0",
"toml": "^3.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.6",
"@types/express": "^5.0.1",
"@types/jquery": "^3.5.32",
"@types/node": "^22.15.17",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.21",
"biome": "^0.3.3",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.6",
"tsx": "^4.19.4",
"vite": "^6.3.5"
}
}