-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
59
60
61
{
"name": "@beuluis/thermaltastic",
"version": "0.1.0",
"description": "Control a Adafruit thermal printer over different adapters",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint .",
"prepack": "npm run build",
"build": "tsc --project tsconfig.build.json",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/Thermaltastic.git"
},
"keywords": [
"thermal",
"printer",
"adafruit",
"mqtt"
],
"author": "Luis Beu <me@luisbeu.de> (https://luisbeu.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beuterei/Thermaltastic/issues"
},
"homepage": "https://github.com/Beuterei/Thermaltastic#readme",
"lint-staged": {
"*.{js,ts,json,yml,yaml}": [
"eslint"
]
},
"devDependencies": {
"@beuluis/eslint-config": "2.0.0",
"@beuluis/hook-cli": "1.2.1",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"@types/qrcode": "1.5.0",
"eslint": "8.39.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-mock-extended": "3.0.4",
"lint-staged": "13.2.2",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"dependencies": {
"async-mqtt": "2.6.3",
"zod": "3.21.4"
}
}