修改后台权限

This commit is contained in:
yoyuzh
2026-03-24 14:30:59 +08:00
parent 00f902f475
commit b2d9db7be9
9310 changed files with 1246063 additions and 48 deletions

70
node_modules/@dotenvx/dotenvx/package.json generated vendored Normal file
View File

@@ -0,0 +1,70 @@
{
"version": "1.57.2",
"name": "@dotenvx/dotenvx",
"description": "a secure dotenvfrom the creator of `dotenv`",
"author": "@motdotla",
"keywords": [
"dotenv",
"env"
],
"homepage": "https://github.com/dotenvx/dotenvx",
"repository": {
"type": "git",
"url": "git+https://github.com/dotenvx/dotenvx.git"
},
"license": "BSD-3-Clause",
"files": [
"src/**/*",
"CHANGELOG.md"
],
"main": "src/lib/main.js",
"types": "src/lib/main.d.ts",
"exports": {
".": {
"types": "./src/lib/main.d.ts",
"require": "./src/lib/main.js",
"default": "./src/lib/main.js"
},
"./config": "./src/lib/config.js",
"./config.js": "./src/lib/config.js",
"./package.json": "./package.json"
},
"bin": {
"dotenvx": "./src/cli/dotenvx.js"
},
"scripts": {
"standard": "standard",
"standard:fix": "standard --fix",
"test": "tap run --test-env=DOTENVX_OPS_OFF=true --allow-empty-coverage --disable-coverage --timeout=60000",
"test-coverage": "tap run --test-env=DOTENVX_OPS_OFF=true --show-full-coverage --timeout=60000",
"testshell": "bash shellspec",
"prerelease": "npm test && npm run testshell",
"release": "standard-version"
},
"funding": "https://dotenvx.com",
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^17.2.1",
"eciesjs": "^0.4.10",
"execa": "^5.1.1",
"fdir": "^6.2.0",
"ignore": "^5.3.0",
"object-treeify": "1.1.33",
"picomatch": "^4.0.2",
"which": "^4.0.0"
},
"devDependencies": {
"@yao-pkg/pkg": "^5.14.2",
"capture-console": "^1.0.2",
"esbuild": "^0.25.8",
"proxyquire": "^2.1.3",
"sinon": "^14.0.1",
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"tap": "^21.0.1"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}