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

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

50 lines
1.0 KiB
JSON

{
"name": "regex-parser",
"version": "2.3.1",
"description": "A module that parses a string as regular expression and returns the parsed value.",
"main": "lib/index.js",
"typings": "lib/typings/regex-parser.d.ts",
"scripts": {
"test": "vows --spec --isolate"
},
"repository": {
"type": "git",
"url": "git@github.com:IonicaBizau/regex-parser.js.git"
},
"keywords": [
"regular",
"expressions",
"node",
"parser",
"string"
],
"author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/IonicaBizau/regex-parser.js/issues"
},
"homepage": "https://github.com/IonicaBizau/regex-parser.js",
"directories": {
"test": "test"
},
"devDependencies": {
"vows": "^0.8.1"
},
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"index.d.ts",
"package-lock.json",
"bloggify.js",
"bloggify.json",
"bloggify/"
]
}