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
40 lines
949 B
JSON
40 lines
949 B
JSON
{
|
|
"name": "@bytelyst/dashboard-shell",
|
|
"version": "0.1.5",
|
|
"description": "Configurable Next.js dashboard layout with sidebar, profile, billing, and settings pages",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run --pool forks",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18.0.0",
|
|
"react-dom": ">=18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.3.2",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"happy-dom": "^18.0.1",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://gitea.bytelyst.com/api/packages/ByteLyst/npm/"
|
|
}
|
|
}
|