Skip to content

Commit dc97a5d

Browse files
fix: add publishConfig to publish scoped package as public (#8)
- Add 'publishConfig.access: public' to package.json - Scoped packages (@coffeecup_tech/*) are private by default on NPM - This configuration allows publishing publicly without a paid plan - Fixes '402 Payment Required' error during npm publish
1 parent e13d9cf commit dc97a5d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@
6363
"ts-jest": "^29.4.6",
6464
"typescript": "^5.9.3"
6565
},
66+
"publishConfig": {
67+
"access": "public"
68+
},
6669
"engines": {
6770
"node": ">=20.0"
6871
}

0 commit comments

Comments
 (0)