-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 841 Bytes
/
package.json
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
{
"name": "@zqui/react-terminal",
"version": "0.0.1",
"description": "A react component that renders a bash-like terminal.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"sourcemap": "tsup src/index.ts --sourcemap"
},
"keywords": [
"terminal",
"bash",
"shell",
"command-line",
"react-terminal",
"terminal in react"
],
"author": "zaidsidd360",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-textarea-autosize": "^8.5.3",
"styled-components": "^6.1.0",
"use-caret-position": "^0.0.2"
},
"devDependencies": {
"@types/react": "^18.2.31",
"@types/styled-components": "^5.1.34",
"tsup": "^7.2.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^18.2.0"
}
}