publish-outdated-packages.sh rewritten: - Manifest-based change detection (no registry tarball downloads) - Single pack per package (not double-pack for check+publish) - Deterministic content hash: normalizes version, publishConfig, and @bytelyst/* dep versions (workspace:* resolution noise) - Single metadata fetch per package (cached in-process) - Fixed .npmrc overwrite bug that broke auth during publish phase - npm_clean() helper strips all proxy env vars uniformly release-packages.sh fixed: - .npmrc now includes scoped registry + proxy=false for corp - Unified corp/home publish path (no duplicated code) - version_on_registry() uses proxy-stripped env - Registry credential check uses proxy-stripped env CI workflow: switched to publish-outdated-packages.sh --skip-build
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"name": "@bytelyst/config",
|
|
"version": "0.1.5",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./keyvault": {
|
|
"import": "./dist/keyvault.js",
|
|
"types": "./dist/keyvault.d.ts"
|
|
},
|
|
"./product-identity": {
|
|
"import": "./dist/product-identity.js",
|
|
"types": "./dist/product-identity.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run --pool forks"
|
|
},
|
|
"peerDependencies": {
|
|
"@azure/identity": ">=4.0.0",
|
|
"@azure/keyvault-secrets": ">=4.8.0",
|
|
"zod": ">=3.20.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@azure/identity": {
|
|
"optional": true
|
|
},
|
|
"@azure/keyvault-secrets": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@azure/identity": "^4.13.0",
|
|
"@azure/keyvault-secrets": "^4.10.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://gitea.bytelyst.com/api/packages/ByteLyst/npm/"
|
|
}
|
|
}
|