Skip to content

Commit

Permalink
docs: add repository field to package.json
Browse files Browse the repository at this point in the history
Added the repository URL to package.json to improve package discoverability and accessibility. This change helps users and contributors to find the source code and related resources more easily.
  • Loading branch information
silvaezequias committed Mar 7, 2024
1 parent c40b5eb commit 3ac2ced
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "granular-ac",
"version": "2.0.0",
"version": "2.1.0",
"description": "Granular Access Control library for managing permissions.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"publish": "npm run build && npm publish"
"build:publish": "npm run build && npm publish"
},
"keywords": [
"access-control",
Expand All @@ -17,6 +17,14 @@
"role-based",
"rbac"
],
"repository": {
"type": "git",
"url": "git+https://github.com/silvaezequias/granular-ac.git"
},
"bugs": {
"url": "https://github.com/silvaezequias/granular-ac/issues"
},
"homepage": "https://github.com/silvaezequias/granular-ac#readme",
"author": "Ezequias Lopes <[email protected]>",
"license": "MIT",
"devDependencies": {
Expand Down

0 comments on commit 3ac2ced

Please sign in to comment.