-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.51 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
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
84
85
86
87
88
89
90
91
92
{
"name": "esc-pos-gen",
"version": "1.0.0",
"types": "dist/index.d.ts",
"target-node": "dist/index-node.js",
"target-browser": "dist/index-browser.js",
"targets": {
"target-node": {
"source": "src/index-node.ts",
"engines": {
"node": ">= 16"
},
"context": "node",
"isLibrary": true
},
"target-browser": {
"source": "src/index-browser.ts",
"engines": {
"browsers": "Chrome 100"
}
},
"target-cli": {
"source": "src/cli.ts",
"engines": {
"node": ">= 18"
}
},
"target-spa": {
"source": "src/spa/index.html",
"engines": {
"browsers": "Chrome 100"
}
},
"types": {
"source": "src/index-node.ts"
}
},
"scripts": {
"start": "parcel serve --target target-spa",
"build": "parcel build; cp dist/index.d.ts dist/index-node.d.ts; cp dist/index.d.ts dist/index-browser.d.ts",
"test": "jest",
"clean": "rm -rf ./dist",
"predeploy": "npm run clean && NODE_ENV=production npm run build && bash assets/cp-assets.sh",
"deploy": "gh-pages -d dist/target-spa -o github -b gh-pages"
},
"author": "Markus Horst Becker <mtib.becker@gmail.com>",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@parcel/packager-ts": "^2.8.2",
"@parcel/transformer-typescript-types": "^2.8.2",
"@types/iconv": "^3.0.1",
"@types/jest": "^29.2.4",
"@types/marked": "^4.0.8",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"buffer": "^5.7.1",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"gh-pages": "^4.0.0",
"jest": "^29.3.1",
"os-browserify": "^0.3.0",
"parcel": "^2.8.2",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"util": "^0.12.5"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/lora": "^4.5.12",
"@fontsource/roboto": "^4.5.8",
"@fontsource/roboto-condensed": "^4.5.9",
"@fontsource/roboto-slab": "^4.5.9",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"bmrequesttype": "^0.0.5",
"canvas-dither": "^1.0.1",
"dom-to-image-more": "^2.13.1",
"iconv-lite": "^0.6.3",
"marked": "^4.2.5",
"pretty-ms": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-storage-state": "^1.0.5",
"usb": "^2.6.0"
}
}