-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@adcondev/poster",
"version": "4.6.1",
"private": true,
"description": "A professional, production-ready Go library for controlling ESC/POS thermal printers",
"keywords": [
"pos",
"printer",
"escpos",
"thermal",
"receipt",
"golang",
"go",
"esc-pos",
"thermal-printer",
"receipt-printer",
"barcode",
"qrcode",
"windows",
"spooler"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adcondev/poster.git"
},
"author": {
"name": "adcondev",
"url": "https://github.com/adcondev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/adcondev/poster/issues"
},
"homepage": "https://github.com/adcondev/poster#readme",
"scripts": {
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"release:dry-run": "standard-version --dry-run",
"release:first": "standard-version --first-release",
"changelog": "standard-version --skip.bump --skip.tag",
"postinstall": "husky install || true",
"prepare": "husky install || true",
"lint": "npx commitlint --from=HEAD~1",
"lint:fix": "npx prettier --write *.json *.md",
"test": "echo 'JavaScript tests not applicable for Go project'",
"preversion": "echo 'Preparing version bump...'",
"postversion": "echo 'Version bumped successfully'"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}