-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.87 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
{
"name": "@juit/librebarcode",
"version": "2.0.15",
"description": "Encoders and fonts for EAN13 and Code128",
"author": "Team Juit <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"./assets/LibreBarcode128-Regular.otf": "./assets/LibreBarcode128-Regular.otf",
"./assets/LibreBarcode128-Regular.ttf": "./assets/LibreBarcode128-Regular.ttf",
"./assets/LibreBarcode128-Regular.woff": "./assets/LibreBarcode128-Regular.woff",
"./assets/LibreBarcode128-Regular.woff2": "./assets/LibreBarcode128-Regular.woff2",
"./assets/LibreBarcode128Text-Regular.otf": "./assets/LibreBarcode128Text-Regular.otf",
"./assets/LibreBarcode128Text-Regular.ttf": "./assets/LibreBarcode128Text-Regular.ttf",
"./assets/LibreBarcode128Text-Regular.woff": "./assets/LibreBarcode128Text-Regular.woff",
"./assets/LibreBarcode128Text-Regular.woff2": "./assets/LibreBarcode128Text-Regular.woff2",
"./assets/LibreBarcodeEAN13Text-Regular.otf": "./assets/LibreBarcodeEAN13Text-Regular.otf",
"./assets/LibreBarcodeEAN13Text-Regular.ttf": "./assets/LibreBarcodeEAN13Text-Regular.ttf",
"./assets/LibreBarcodeEAN13Text-Regular.woff": "./assets/LibreBarcodeEAN13Text-Regular.woff",
"./assets/LibreBarcodeEAN13Text-Regular.woff2": "./assets/LibreBarcodeEAN13Text-Regular.woff2",
"./assets/fonts-otf.css": "./assets/fonts-otf.css",
"./assets/fonts-ttf.css": "./assets/fonts-ttf.css",
"./assets/fonts-woff.css": "./assets/fonts-woff.css",
"./assets/fonts-woff2.css": "./assets/fonts-woff2.css",
"./assets/fonts.css": "./assets/fonts.css"
},
"scripts": {
"build": "plug && vite build",
"coverage": "plug coverage",
"dev": "plug coverage -w src -w test",
"demo": "vite",
"lint": "plug lint",
"test": "plug test",
"transpile": "plug transpile"
},
"devDependencies": {
"@plugjs/build": "^0.6.30",
"@plugjs/eslint-plugin": "^0.3.12",
"@quasar/vite-plugin": "^1.9.0",
"@vitejs/plugin-vue": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"quasar": "^2.17.7",
"sass-embedded": "^1.85.0",
"vite": "^6.1.1"
},
"directories": {
"test": "test"
},
"files": [
"*.md",
"assets/",
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/juitnow/juit-librebarcode.git"
},
"keywords": [
"barcode",
"fonts",
"node",
"ean13",
"ean",
"code128",
"encoder"
],
"bugs": {
"url": "https://github.com/juitnow/juit-librebarcode/issues"
},
"homepage": "https://github.com/juitnow/juit-librebarcode#readme"
}