-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@mbtech-nl/bitmap",
"version": "1.3.0",
"description": "Shared 1bpp bitmap rendering core for thermal label printers",
"license": "MIT",
"author": "Mannes Brak",
"homepage": "https://github.com/mbtech-nl/bitmap",
"repository": {
"type": "git",
"url": "https://github.com/mbtech-nl/bitmap.git"
},
"engines": {
"node": ">=20.9.0",
"pnpm": ">=9.0.0"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE"
],
"sideEffects": false,
"prettier": "@mbtech-nl/prettier-config",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"format": "prettier --write src",
"docs:images": "pnpm build && node --experimental-strip-types scripts/build-docs-images.ts",
"docs:api": "typedoc",
"docs:dev": "pnpm docs:api && vitepress dev docs",
"docs:build": "pnpm docs:api && pnpm docs:images && vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:check-images": "pnpm docs:images && git diff --exit-code -- docs/public/images"
},
"devDependencies": {
"@mbtech-nl/eslint-config": "^1.0.1",
"@mbtech-nl/prettier-config": "^1.0.0",
"@mbtech-nl/tsconfig": "^1.0.0",
"@types/node": "^25.6.0",
"@types/pngjs": "^6.0.5",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"pngjs": "^7.0.0",
"prettier": "^3.0.0",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "~5.5.0",
"vitepress": "^1.6.4",
"vitest": "^2.0.0",
"vue": "^3.5.33"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mannes"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/mannes"
}
]
}