-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.36 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.36 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
{
"name": "ink-canvas",
"version": "0.4.4",
"description": "A library for rendering Ink applications in the browser",
"keywords": [
"react",
"ink",
"xterm",
"terminal"
],
"homepage": "https://byteland.app/opensource/ink-canvas",
"bugs": {
"url": "https://github.com/ByteLandTechnology/ink-canvas/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/ink-canvas.git"
},
"license": "MIT",
"author": "ByteLand Technology <github@byteland.app>",
"type": "module",
"files": [
"dist"
],
"main": "./dist/ink-canvas.cjs",
"module": "./dist/ink-canvas.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ink-canvas.js",
"require": "./dist/ink-canvas.cjs"
},
"./shims/process": {
"types": "./dist/shims/process.d.ts",
"import": "./dist/shims/process.js",
"require": "./dist/shims/process.cjs"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js",
"require": "./dist/plugin.cjs"
}
},
"scripts": {
"build": "tsc -b && vite build",
"lint": "eslint .",
"prepare": "husky",
"docs": "typedoc --plugin typedoc-plugin-markdown --disableSources --out docs/api src/index.ts && prettier --write docs/api"
},
"peerDependencies": {
"@xterm/addon-fit": ">=0.10.0",
"@xterm/xterm": ">=6.0.0",
"buffer": ">=6.0.0",
"events": ">=3.0.0",
"ink": ">=6.0.0",
"react": ">=19",
"react-dom": ">=19",
"readable-stream": ">=4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.1",
"@types/events": "^3.0.3",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/webpack": "^5.28.5",
"@vitejs/plugin-react": "^5.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2"
}
}