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
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@bytelyst/design-tokens",
|
|
"version": "0.1.5",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./tokens.json": "./tokens/bytelyst.tokens.json",
|
|
"./generated/tokens": "./generated/tokens.ts",
|
|
"./css": "./generated/tokens.css",
|
|
"./css/chronomind": "./generated/chronomind.css",
|
|
"./css/jarvisjr": "./generated/jarvisjr.css",
|
|
"./css/nomgap": "./generated/nomgap.css",
|
|
"./css/actiontrail": "./generated/actiontrail.css",
|
|
"./css/flowmonk": "./generated/flowmonk.css",
|
|
"./css/notelett": "./generated/notelett.css",
|
|
"./css/localmemgpt": "./generated/localmemgpt.css",
|
|
"./css/localllmlab": "./generated/localllmlab.css",
|
|
"./css/lysnrai": "./generated/lysnrai.css",
|
|
"./css/peakpulse": "./generated/peakpulse.css",
|
|
"./css/mindlyst": "./generated/mindlyst.css"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"tokens",
|
|
"generated",
|
|
"scripts"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"generate": "tsx scripts/generate.ts",
|
|
"test": "vitest run --pool forks"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://gitea.bytelyst.com/api/packages/ByteLyst/npm/"
|
|
}
|
|
}
|