-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "ink-multiline-input",
"version": "0.1.0",
"description": "A multiline text input component for Ink CLI applications",
"keywords": [
"react",
"ink",
"cli",
"terminal",
"scrollview",
"component",
"ui"
],
"homepage": "https://www.byteland.app/opensource/ink-multiline-input",
"bugs": {
"url": "https://github.com/ByteLandTechnology/ink-multiline-input/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/ink-multiline-input.git"
},
"license": "MIT",
"author": "ByteLand Technology <github@byteland.app>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"files": [
"docs",
"dist"
],
"scripts": {
"test": "vitest run",
"prepare": "husky",
"build": "tsup",
"docs": "typedoc --plugin typedoc-plugin-markdown --disableSources --out docs/api && prettier --write docs/api"
},
"peerDependencies": {
"ink": ">=6",
"react": ">=19"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/ink": "^0.5.2",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"husky": "^9.1.7",
"ink": "^6.5.1",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"react": "^19.2.1",
"tsup": "^8.5.1",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"vitest": "^4.0.16"
}
}