- Created .npmrc with @bytelyst scoped registry pointing to local Gitea - Added publishConfig.registry to all 57 @bytelyst/* package.json files - Created scripts/harden-publish-config.sh for future re-runs - Prevents accidental publish to npmjs.org or corporate JFrog registry
38 lines
759 B
JSON
38 lines
759 B
JSON
{
|
|
"name": "@bytelyst/testing",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"pretest": "pnpm --dir ../.. --filter @bytelyst/fastify-core build",
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"devDependencies": {
|
|
"@bytelyst/fastify-core": "workspace:*",
|
|
"fastify": "^5.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"vitest": ">=3.0.0",
|
|
"fastify": ">=5.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"fastify": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://localhost:3300/api/packages/bytelyst/npm/"
|
|
}
|
|
}
|