-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "enqr",
"description": "Lightweight QR encoder for the browser & node loosely based on zxing",
"version": "1.5.1",
"main": "dist/index.js",
"types": "types/index.d.ts",
"homepage": "https://github.com/WasabiThumb/enqr",
"repository": "github:WasabiThumb/enqr",
"directories": {
"lib": "dist",
"test": "tests"
},
"browser": "umd/enqr.min.js",
"unpkg": "umd/enqr.min.js",
"scripts": {
"prepare": "npm run build",
"build": "npx tsc && npm run build-umd",
"build-umd": "npx webpack --env mode='prod' && npx webpack --env mode='dev'",
"test": "npx jest"
},
"keywords": [
"qr",
"matrix",
"generator",
"encoder",
"browser",
"zxing"
],
"author": "wasabithumbs",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"browser-or-node": "^3.0.0",
"canvas": "^2.11.2"
}
}