diff --git a/.changeset/breezy-cups-enjoy.md b/.changeset/breezy-cups-enjoy.md new file mode 100644 index 0000000..086861b --- /dev/null +++ b/.changeset/breezy-cups-enjoy.md @@ -0,0 +1,5 @@ +--- +"@evolution-sdk/scalus-uplc": patch +--- + +Add publish configuration and package metadata for npm publishing. Includes repository links, keywords, homepage, and publishConfig with public access and provenance settings. diff --git a/packages/scalus-uplc/package.json b/packages/scalus-uplc/package.json index 8aa2a71..b9c577e 100644 --- a/packages/scalus-uplc/package.json +++ b/packages/scalus-uplc/package.json @@ -45,5 +45,41 @@ }, "devDependencies": { "typescript": "^5.9.2" + }, + "keywords": [ + "cardano", + "blockchain", + "scalus", + "uplc", + "evaluator", + "typescript", + "effect" + ], + "homepage": "https://github.com/IntersectMBO/evolution-sdk", + "repository": { + "type": "git", + "url": "git+https://github.com/IntersectMBO/evolution-sdk.git", + "directory": "packages/scalus-uplc" + }, + "bugs": { + "url": "https://github.com/IntersectMBO/evolution-sdk/issues" + }, + "license": "MIT", + "publishConfig": { + "access": "public", + "provenance": true, + "exports": { + ".": { + "node": { + "types": "./dist/index.node.d.ts", + "default": "./dist/index.node.js" + }, + "default": { + "types": "./dist/index.node.d.ts", + "default": "./dist/index.node.js" + } + }, + "./package.json": "./package.json" + } } }