-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@point-of-sale/webserial-customer-display",
"version": "1.0.0",
"type": "module",
"exports": {
"browser": {
"import": "./dist/webserial-customer-display.esm.js",
"require": "./dist/webserial-customer-display.umd.js",
"script": "./dist/webserial-customer-display.umd.js"
}
},
"module": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NielsLeenheer/WebSerialCustomerDisplay.git"
},
"keywords": [
"serial",
"webserial",
"display",
"customerdisplay",
"bixalon",
"digipos",
"glacetron"
],
"author": "Niels Leenheer",
"license": "MIT",
"bugs": {
"url": "https://github.com/NielsLeenheer/WebSerialCustomerDisplay/issues"
},
"homepage": "https://github.com/NielsLeenheer/WebSerialCustomerDisplay#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"rollup": "^3.20.7"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist"
],
"dependencies": {
"codepage-encoder": "^2.0.2"
}
}