新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
37 lines
825 B
JSON
37 lines
825 B
JSON
{
|
|
"name": "ipaddr.js",
|
|
"description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.",
|
|
"version": "2.3.0",
|
|
"author": "whitequark <whitequark@whitequark.org>",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"eslint": "^9.19.0",
|
|
"uglify-es": "*"
|
|
},
|
|
"scripts": {
|
|
"lint": "npx eslint lib",
|
|
"lintfix": "npx eslint --fix lib test",
|
|
"build": "npx uglifyjs --compress --mangle --wrap=window -o ipaddr.min.js lib/ipaddr.js",
|
|
"test": "node --test"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"ipaddr.min.js"
|
|
],
|
|
"keywords": [
|
|
"ip",
|
|
"ipv4",
|
|
"ipv6"
|
|
],
|
|
"repository": "git://github.com/whitequark/ipaddr.js",
|
|
"main": "./lib/ipaddr.js",
|
|
"engines": {
|
|
"node": ">= 10"
|
|
},
|
|
"license": "MIT",
|
|
"types": "./lib/ipaddr.js.d.ts"
|
|
}
|