-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 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
{
"name": "@opuu/cat-printer",
"description": "SDK to interact with chinese non standard thermal printers (cat printers) over bluetooth",
"version": "0.1.0",
"type": "module",
"main": "./dist/cat-printer.umd.cjs",
"module": "./dist/cat-printer.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"devDependencies": {
"@types/node": "^22.17.0",
"@types/web-bluetooth": "^0.0.21",
"prettier": "^3.6.2",
"typescript": "~5.7.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"exports": {
".": {
"import": "./dist/cat-printer.js",
"require": "./dist/cat-printer.umd.cjs"
}
},
"files": [
"dist"
],
"author": {
"name": "Obaydur Rahman",
"email": "hello@opu.rocks",
"url": "https://opu.rocks"
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/opuu/cat-printer.git"
},
"homepage": "https://opuu.github.io/cat-printer/",
"keywords": [
"bluetooth",
"thermal",
"printer",
"cat",
"printer-sdk",
"bluetooth-printer",
"print",
"cat-printer",
"thermal-printer",
"bluetooth-thermal-printer"
]
}