-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
46
47
48
49
50
51
52
{
"name": "minecraft-text-canvas",
"version": "1.2.1",
"description": "Generate images of Minecraft text using markup.",
"license": "MIT",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"keywords": [
"font",
"image",
"image processing",
"minecraft",
"png",
"jpeg",
"jpg"
],
"homepage": "https://github.com/jejebecarte/minecraft-text-canvas#readme",
"repository": {
"type": "git",
"url": "https://github.com/jejebecarte/minecraft-text-canvas.git"
},
"bugs": {
"url": "https://github.com/jejebecarte/minecraft-text-canvas/issues"
},
"scripts": {
"build": "tsc && pnpm run copy-files",
"clean": "rm -r dist/",
"copy-files": "copyfiles -u 1 src/fonts/**/* dist/",
"create-glyphs": "node scripts/create-glyphs.js",
"dev": "ts-node-dev --respawn --transpile-only --poll src/index.ts",
"format": "prettier --write \"src/**\"",
"lint": "eslint \"src/**\"",
"lint:fix": "pnpm run lint --fix"
},
"dependencies": {
"canvas": "2.10.2"
},
"devDependencies": {
"@jejebecarte/eslint-config": "^1.0.6",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.2.0",
"node-gyp": "^10.2.0",
"prettier": "^2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
}
}