mirror of
https://github.com/quartz-community/tui.git
synced 2026-07-22 03:00:23 +00:00
65 lines
1.4 KiB
JSON
65 lines
1.4 KiB
JSON
{
|
|
"name": "@quartz-community/tui",
|
|
"version": "0.1.0",
|
|
"description": "Terminal User Interface (TUI) for Quartz plugin management.",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"author": "Quartz Community",
|
|
"homepage": "https://quartz.jzhao.xyz",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/quartz-community/tui"
|
|
},
|
|
"keywords": [
|
|
"quartz",
|
|
"quartz-plugin",
|
|
"tui",
|
|
"terminal",
|
|
"plugin-manager"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE",
|
|
"CHANGELOG.md"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/App.mjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "./dist/App.mjs",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "node build.mjs",
|
|
"dev": "node build.mjs",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@opentui/core": "^0.1.80",
|
|
"@opentui/react": "^0.1.80",
|
|
"react": "^19.2.4",
|
|
"yaml": "^2.8.2",
|
|
"esbuild": "^0.27.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.10",
|
|
"@types/react": "^19.2.14",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"quartz": {
|
|
"name": "tui",
|
|
"displayName": "Plugin Manager TUI",
|
|
"category": "utility",
|
|
"version": "0.1.0",
|
|
"quartzVersion": ">=5.0.0",
|
|
"dependencies": [],
|
|
"defaultEnabled": true,
|
|
"defaultOptions": {}
|
|
},
|
|
"engines": {
|
|
"node": ">=22",
|
|
"npm": ">=10.9.2"
|
|
}
|
|
}
|