-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.17 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.17 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "tinky-image",
"version": "1.0.0",
"description": "Terminal image rendering for the Tinky CLI framework",
"keywords": [
"react",
"tinky",
"cli",
"terminal",
"image",
"kitty",
"iterm2",
"sixel",
"halfblock",
"braille"
],
"homepage": "https://github.com/ByteLandTechnology/tinky-image#readme",
"bugs": {
"url": "https://github.com/ByteLandTechnology/tinky-image/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/tinky-image.git"
},
"license": "MIT",
"author": {
"name": "ByteLandTechnology"
},
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./browser": {
"types": "./lib/browser.d.ts",
"default": "./lib/browser.js"
}
},
"browser": {
"sharp": "sharp-web"
},
"scripts": {
"test": "vitest run --coverage",
"build": "node -e \"require('fs').rmSync('lib', { recursive: true, force: true })\" && tsc -p tsconfig.build.json",
"lint": "eslint src tests",
"typecheck": "tsc --noEmit",
"typecheck:demo": "tsc --noEmit -p tsconfig.demo.json",
"demo:cli": "node --preserve-symlinks --import tsx demo/cli.tsx",
"demo:web": "vite --config demo/web/vite.config.ts",
"demo:web:build": "vite build --config demo/web/vite.config.ts",
"prepublish": "npm run build",
"prepare": "husky"
},
"files": [
"./lib/**/*"
],
"peerDependencies": {
"react": ">=18",
"sharp": ">=0.33.0",
"sharp-web": "*",
"sixel": ">=0.16.0",
"tinky": ">=0.1.0"
},
"peerDependenciesMeta": {
"sharp": {
"optional": true
},
"sharp-web": {
"optional": true
},
"sixel": {
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.3",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^3.2.4",
"canvas": "^3.2.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"happy-dom": "^20.8.4",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^29.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"react": "^19.0.0",
"react-dom": "^19.2.4",
"semantic-release": "^25.0.2",
"sharp": "^0.33.0",
"sharp-web": "^1.0.0",
"tinky": "^1.9.0",
"tinky-web": "^1.0.2",
"tsx": "^4.20.6",
"typescript-eslint": "^8.54.0",
"vite": "^7.1.12",
"vitest": "^3.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md,yaml,yml}": "prettier --write"
},
"dependencies": {
"base64-js": "^1.5.1",
"tinky-figures": "^1.0.2"
}
}