-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 915 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 915 Bytes
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
{
"name": "agentshare-tui",
"version": "1.0.0",
"description": "AgentShare TUI",
"main": "index.js",
"type": "module",
"scripts": {
"build": "esbuild index.js --bundle --platform=node --format=esm --outfile=dist/index.js --loader:.js=jsx --external:ink --external:react --external:fs-extra --external:ink-select-input --external:ink-text-input",
"start": "node dist/index.js"
},
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^13.0.0",
"ink": "^4.4.1",
"ink-select-input": "^5.0.0",
"ink-text-input": "^5.0.1",
"js-yaml": "^4.1.1",
"react": "^18.2.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/node": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.28.6",
"esbuild": "^0.27.2"
}
}