-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.84 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.84 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ink-picture",
"version": "1.3.4",
"description": "Better image component for Ink CLI/TUIs",
"license": "MIT",
"repository": "https://github.com/endernoke/ink-picture",
"author": {
"name": "James Zheng",
"email": "endernoke@gmail.com",
"url": "https://github.com/endernoke"
},
"type": "module",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"format": "biome format --write",
"example": "node --loader=ts-node/esm --no-warnings example/image.tsx",
"test": "tsc --noEmit && biome ci && FORCE_COLOR=1 ava",
"build": "tsc",
"prepare": "husky",
"pretest": "tsc",
"lint": "biome lint"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": ["biome format --write"]
},
"files": ["build"],
"keywords": [
"ink",
"image",
"photo",
"display",
"component",
"jsx",
"react",
"picture",
"render",
"viewer",
"cli",
"terminal"
],
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.0",
"@types/node-fetch": "^2.6.13",
"@types/react": "^19.1.12",
"ava": "^6.4.1",
"husky": "^9.1.7",
"ink": "^6.8.0",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.1.6",
"node-pty": "^1.0.0",
"react": "^19.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"peerDependencies": {
"ink": ">=5",
"react": ">=18"
},
"ava": {
"workerThreads": false,
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": ["--loader=ts-node/esm"]
},
"dependencies": {
"chalk": "^5.6.0",
"is-unicode-supported": "^2.1.0",
"iterm2-version": "^6.0.0",
"node-fetch": "^3.3.2",
"sharp": "^0.34.3",
"sixel": "^0.16.0",
"supports-color": "^10.2.0"
}
}