-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "font2bitmap",
"version": "1.1.2",
"description": "Utility to convert font files to bitmap format",
"main": "dist/cli.js",
"type": "module",
"keywords": [
"bitmap",
"OLED",
"font",
"ssd1306"
],
"author": "Pavel Koltyshev <pkoltyshev@gmail.com>",
"license": "MIT",
"repository": "pkolt/font2bitmap",
"bugs": {
"url": "https://github.com/pkolt/font2bitmap/issues",
"email": "pkoltyshev@gmail.com"
},
"files": [
"README.md",
"LICENSE.md",
"dist/cli.js"
],
"bin": {
"font2bitmap": "dist/cli.js"
},
"engines": {
"node": ">= 24"
},
"scripts": {
"dev": "node ./src/cli.ts",
"build": "rimraf dist && esbuild ./src/cli.ts --bundle --minify --platform=node --format=esm --packages=external --outfile=./dist/cli.js",
"types": "tsc --noEmit",
"format": "prettier --check src",
"format-fix": "prettier --write src",
"lint": "eslint",
"lint-fix": "eslint --fix",
"knip": "knip",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage",
"check": "npm run types && npm run format && npm run test && npm run lint && npm run knip",
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then git config core.hooksPath .git-hooks; fi",
"pre-commit": "npm run check",
"release": "release-it"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"jiti": "^2.6.1",
"knip": "^5.78.0",
"prettier": "^3.7.4",
"release-it": "^19.2.2",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"dependencies": {
"canvas": "^3.2.0",
"commander": "^14.0.2"
}
}