- 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
44 lines
844 B
JSON
44 lines
844 B
JSON
{
|
|
"name": "@bytelyst/field-encrypt",
|
|
"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": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@bytelyst/errors": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@azure/keyvault-keys": ">=4.8.0",
|
|
"@azure/identity": ">=4.0.0",
|
|
"zod": ">=3.22.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@azure/keyvault-keys": {
|
|
"optional": true
|
|
},
|
|
"@azure/identity": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"vitest": "^3.0.0",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://localhost:3300/api/packages/bytelyst/npm/"
|
|
}
|
|
}
|