-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.9 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
77
78
79
80
81
82
83
{
"name": "expedy-sdk-node",
"version": "1.1.0",
"description": "Official Node.js SDK for the Expedy Print API v2 — send print jobs (including Chinese/Japanese/Korean text) to cloud thermal receipt printers and Raspberry Pi gateways.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"openapi.yaml"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
"test": "npm run build && node --test test/*.test.mjs",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build"
},
"keywords": [
"expedy",
"thermal-printer",
"receipt-printer",
"thermal-receipt-printer",
"escpos",
"cloud-print",
"cloud-printing",
"ticket-printing",
"ticket-printer",
"receipt-printing",
"pos-printer",
"pos",
"print-api",
"print-server",
"google-cloud-print",
"google-cloud-print-alternative",
"raspberry-pi",
"raspberry-pi-printer",
"label-printer",
"label-printing",
"sdk",
"node-sdk",
"typescript",
"openapi",
"cjk",
"chinese",
"japanese",
"korean",
"unicode",
"kitchen-printer"
],
"license": "MIT",
"author": {
"name": "Expedy",
"url": "https://www.expedy.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExpedyDev/expedy-sdk-node.git"
},
"bugs": {
"url": "https://github.com/ExpedyDev/expedy-sdk-node/issues"
},
"homepage": "https://docs.expedy.io",
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.4.0"
}
}