Skip to content

Commit

Permalink
chore: add correct package metadata to next, logging and react
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielelpidio committed Jan 29, 2025
1 parent 090bb27 commit e35921a
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 12 deletions.
32 changes: 28 additions & 4 deletions packages/logging/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"name": "@axiomhq/logging",
"description": "The official logging package for Axiom",
"version": "0.0.1",
"description": "",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Lukas Malkmus <lukas@axiom.co>",
"Islam Shehata <islam@axiom.co>",
"Arne Bahlo <arne@axiom.co>",
"Gabriel De Andrade <gabriel@axiom.co>"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
Expand All @@ -24,9 +32,25 @@
"lint": "eslint .",
"test": "vitest ./test/unit/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"keywords": [
"axiom",
"api",
"rest",
"client",
"axiom-js",
"axiom sdk",
"axiom js",
"logger",
"logging"
],
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/logging/README.md",
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"dependencies": {
"@axiomhq/js": "^1.3.1"
},
Expand Down
33 changes: 29 additions & 4 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
{
"name": "@axiomhq/nextjs",
"version": "0.0.1",
"description": "",
"author": "Axiom, Inc.",
"license": "MIT",
"description": "The official Next.js package for Axiom",
"type": "module",
"main": "dist/cjs/index.cjs",
"contributors": [
"Lukas Malkmus <lukas@axiom.co>",
"Islam Shehata <islam@axiom.co>",
"Arne Bahlo <arne@axiom.co>",
"Gabriel De Andrade <gabriel@axiom.co>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/nextjs/README.md",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
Expand All @@ -25,9 +41,18 @@
"lint": "eslint .",
"test": "vitest run ./test/unit/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"axiom",
"api",
"rest",
"client",
"axiom-nextjs",
"axiom sdk",
"axiom js",
"next-axiom",
"nextjs",
"logging"
],
"dependencies": {
"@axiomhq/logging": "workspace:*"
},
Expand Down
32 changes: 28 additions & 4 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"name": "@axiomhq/react",
"version": "0.0.1",
"description": "",
"description": "The official React package for Axiom",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Lukas Malkmus <lukas@axiom.co>",
"Islam Shehata <islam@axiom.co>",
"Arne Bahlo <arne@axiom.co>",
"Gabriel De Andrade <gabriel@axiom.co>"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
Expand All @@ -26,9 +34,25 @@
"test": "vitest",
"test:watch": "vitest watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"keywords": [
"axiom",
"api",
"rest",
"client",
"axiom-react",
"axiom sdk",
"axiom js",
"react",
"logging"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/react/README.md",
"dependencies": {
"@axiomhq/logging": "workspace:*",
"react": "^19.0.0",
Expand Down

0 comments on commit e35921a

Please sign in to comment.