新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
26 lines
668 B
JSON
26 lines
668 B
JSON
{
|
|
"name": "css-select-base-adapter",
|
|
"version": "0.1.1",
|
|
"description": "Provides some base functions needed by a css-select adapter so that you don't have to implement the whole thing.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrkn/css-select-base-adapter.git"
|
|
},
|
|
"keywords": [
|
|
"css",
|
|
"select",
|
|
"adapter",
|
|
"css-select"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/nrkn/css-select-base-adapter/issues"
|
|
},
|
|
"homepage": "https://github.com/nrkn/css-select-base-adapter#readme",
|
|
"author": "Nik Coughlin <nrkn.com@gmail.com>",
|
|
"license": "MIT"
|
|
}
|