Skip to content

Commit

Permalink
feat(package.json): add detailed description, repository info, keywor…
Browse files Browse the repository at this point in the history
…ds, and author name to improve package metadata

This change will make the package more informative and discoverable on npm and other package managers.
  • Loading branch information
MartinMinkov committed Mar 3, 2024
1 parent 23cd707 commit 293d952
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "mina-graphql-sdk",
"version": "0.1.4",
"description": "",
"description": "A typesafe TypeScript SDK for interacting with Mina's GraphQL daemon. Features include automatically generated types and wrappers for queries and mutations, a direct GraphQL query option for advanced scenarios, and easy access to accounts, blocks, and transactions data.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/MartinMinkov/mina-graphql-sdk.git"
},
"type": "module",
"files": [
"dist"
Expand All @@ -15,8 +19,18 @@
"clean": "rm -rf dist",
"codegen": "graphql-codegen --config codegen.ts"
},
"keywords": [],
"author": "",
"keywords": [
"mina",
"graphql",
"sdk",
"typescript",
"queries",
"mutations",
"accounts",
"blocks",
"transactions"
],
"author": "Martin Minkov",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
Expand Down

0 comments on commit 293d952

Please sign in to comment.