Files
meeting-room/frontend/node_modules/supports-hyperlinks/package.json
flying-hero 96f6318101 📦 添加虚拟环境和启动脚本
新增:
- backend/venv/ - Python 虚拟环境
- backend/start.sh - 启动脚本(使用虚拟环境)
- backend/requirements.txt - 依赖列表
- .gitignore - 忽略虚拟环境和缓存文件

说明:
- 每个项目使用独立虚拟环境
- 避免依赖冲突
- 启动脚本自动创建和激活虚拟环境
2026-04-04 18:29:02 +08:00

49 lines
1.1 KiB
JSON

{
"name": "supports-hyperlinks",
"version": "2.3.0",
"description": "Detect if your terminal emulator supports hyperlinks",
"license": "MIT",
"repository": "jamestalmage/supports-hyperlinks",
"author": {
"name": "James Talmage",
"email": "james@talmage.io",
"url": "github.com/jamestalmage"
},
"engines": {
"node": ">=8"
},
"scripts": {
"prepublishOnly": "npm run create-types",
"test": "xo && nyc ava",
"create-types": "tsc index.js --allowJs --declaration --emitDeclarationOnly"
},
"files": [
"index.js",
"browser.js"
],
"browser": "browser.js",
"keywords": [
"link",
"terminal",
"hyperlink",
"cli"
],
"dependencies": {
"has-flag": "^4.0.0",
"supports-color": "^7.0.0"
},
"devDependencies": {
"ava": "^2.2.0",
"codecov": "^3.5.0",
"nyc": "^14.1.1",
"typescript": "^3.7.2",
"xo": "^0.24.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}