-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.25 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
{
"name": "braille-image",
"version": "1.0.1",
"description": "Convert images to Unicode braille text art",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "PuppyOne",
"email": "zheng_xz@qq.com",
"url": "https://github.com/PuppyOne"
},
"homepage": "https://github.com/PuppyOne/braille-image#readme",
"bugs": {
"url": "https://github.com/PuppyOne/braille-image/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PuppyOne/braille-image.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"main": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.mts",
"bin": {
"braille-image": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"sharp": "^0.35.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"keywords": [
"braille",
"image",
"ascii-art",
"unicode",
"cli"
]
}