-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 895 Bytes
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
{
"name": "@dimipay/bqencode",
"version": "0.1.1",
"description": "Binary Encoding for QR Codes",
"license": "MIT",
"keywords": [
"base10",
"base45",
"base94",
"qr",
"encode"
],
"homepage": "https://github.com/dimipay/bqencode",
"repository": {
"type": "git",
"url": "https://github.com/dimipay/bqencode.git"
},
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist"],
"scripts": {
"build": "rm -rf dist && bun ./build.ts",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/bun": "latest",
"@types/node": "^22.7.4",
"@vitest/coverage-istanbul": "^2.1.2",
"bun-plugin-dts": "^0.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
}
}