-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 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
{
"name": "labelprinterkit",
"version": "1.0.15",
"description": "Browser-ready label printing toolkit for Brother P-Touch devices using WebUSB/WebBluetooth.",
"keywords": [
"label-printer",
"label-printing",
"brother",
"p-touch",
"ptouch",
"webusb",
"webbluetooth",
"browser",
"esm",
"raster"
],
"license": "GPL-3.0-or-later",
"type": "module",
"main": "./src/index.mjs",
"exports": {
".": {
"import": "./src/index.mjs",
"default": "./src/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"src/",
"examples/",
"docs/",
"LICENSE",
"LICENSES/",
"NOTICE.md",
"COMMERCIAL-LICENSE.md",
"REUSE.toml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SunboX/labelprinterkit.git"
},
"bugs": {
"url": "https://github.com/SunboX/labelprinterkit/issues"
},
"homepage": "https://github.com/SunboX/labelprinterkit#readme",
"scripts": {
"start": "node examples/server.mjs",
"lint": "find src examples test -name '*.mjs' -print0 | xargs -0 -n1 node --check",
"test": "node --test"
},
"dependencies": {
"express": "^4.22.1"
}
}