-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "jspdf-barcode",
"version": "0.1.8",
"description": "barcode generator plugin for jspdf",
"main": "dist/jspdf-barcode.js",
"types": "types.d.ts",
"exports": {
"import": "./dist/jspdf-barcode.js",
"require": "./dist/jspdf-barcode.cjs"
},
"scripts": {
"build": "webpack --mode production",
"build-example": "npm run build --workspace=example && npm run build --workspace=example-server-side",
"example": "npm run dev --workspace=example",
"example-server-side": "npm run dev --workspace=example-server-side"
},
"homepage": "https://github.com/castrix/jspdf-barcode#readme",
"repository": {
"type": "git",
"url": "https://github.com/castrix/jspdf-barcode"
},
"keywords": [
"jspdf",
"barcode",
"barcode",
"generator",
"pdf"
],
"author": "ihsan fajar ramadhan",
"license": "MIT",
"dependencies": {
"jspdf": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-typescript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-loader": "^8.2.2",
"code-128-encoder": "^3.1.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"workspaces": [
"example",
"example-server-side"
]
}