新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
30 lines
665 B
JSON
30 lines
665 B
JSON
{
|
|
"name": "@jest/schemas",
|
|
"version": "28.1.3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/jest.git",
|
|
"directory": "packages/jest-schemas"
|
|
},
|
|
"license": "MIT",
|
|
"main": "./build/index.js",
|
|
"types": "./build/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./build/index.d.ts",
|
|
"default": "./build/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@sinclair/typebox": "^0.24.1"
|
|
},
|
|
"engines": {
|
|
"node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHead": "2cce069800dab3fc8ca7c469b32d2e2b2f7e2bb1"
|
|
}
|