-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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": "qr-core",
"version": "1.0.7",
"description": "Deterministic, zero-dependency QR Code Model 2 encoder (matrix-only)",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
}
},
"keywords": [
"qr",
"qrcode",
"qr-code",
"encoder",
"matrix",
"typescript",
"esm"
],
"author": "goker <https://goker.me>",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "vitest",
"lint": "biome check src tests bench",
"format": "biome format --write src tests bench",
"bench": "npm run build && node dist/bench/bench.js",
"compare": "tsc -p tsconfig.compare.json && node dist-compare/bench/compare.js"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/node": "^25.1.0",
"@types/pngjs": "^6.0.5",
"jsqr": "^1.4.0",
"pngjs": "^7.0.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}