新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
32 lines
814 B
JSON
32 lines
814 B
JSON
{
|
|
"name": "@babel/helper-globals",
|
|
"version": "7.28.0",
|
|
"author": "The Babel Team (https://babel.dev/team)",
|
|
"license": "MIT",
|
|
"description": "A collection of JavaScript globals for Babel internal usage",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/babel/babel.git",
|
|
"directory": "packages/babel-helper-globals"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
"./data/browser-upper.json": "./data/browser-upper.json",
|
|
"./data/builtin-lower.json": "./data/builtin-lower.json",
|
|
"./data/builtin-upper.json": "./data/builtin-upper.json",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"keywords": [
|
|
"babel",
|
|
"globals"
|
|
],
|
|
"devDependencies": {
|
|
"globals": "^16.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=6.9.0"
|
|
},
|
|
"type": "commonjs"
|
|
} |