新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
32 lines
634 B
JSON
32 lines
634 B
JSON
{
|
|
"author": "Jamison Dance <jergason@gmail.com> (http://jamison.dance.com/)",
|
|
"name": "recursive-readdir",
|
|
"description": "Get an array of all files in a directory and subdirectories.",
|
|
"license": "MIT",
|
|
"version": "2.2.3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/jergason/recursive-readdir.git"
|
|
},
|
|
"main": "./index.js",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha test/"
|
|
},
|
|
"keywords": [
|
|
"directory",
|
|
"lister"
|
|
],
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"minimatch": "^3.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "6.1.4"
|
|
}
|
|
}
|