Skip to content

Commit

Permalink
fix: packages set to public
Browse files Browse the repository at this point in the history
  • Loading branch information
bucko13 committed Feb 13, 2024
1 parent 6a2ad97 commit f8e092a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/caravan-bitcoin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
"engines": {
"node": ">=20"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
Expand Down
5 changes: 5 additions & 0 deletions packages/caravan-clients/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "npm run build -- --watch",
Expand Down
3 changes: 2 additions & 1 deletion packages/caravan-psbt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"engines": {
"node": ">=16"
"node": ">=20"
},
"private": true,
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "npm run build -- --watch",
Expand Down
6 changes: 5 additions & 1 deletion packages/caravan-wallets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
"engines": {
"node": ">=20"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
Expand Down Expand Up @@ -56,7 +61,6 @@
"docs": "./bin/build-docs.sh",
"lint": "eslint src --ignore-pattern src/vendor"
},
"bin": {},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@ledgerhq/hw-app-btc": "^5.34.1",
Expand Down

0 comments on commit f8e092a

Please sign in to comment.