Skip to content

Commit

Permalink
prepare release for v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dasfmi committed Aug 15, 2024
1 parent ec22e79 commit f56f78d
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 102 deletions.
108 changes: 54 additions & 54 deletions packages/js/package.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
{
"name": "@axiomhq/js",
"description": "The official javascript bindings for the Axiom API",
"version": "1.1.0",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Lukas Malkmus <[email protected]>",
"Islam Shehata <[email protected]>",
"Arne Bahlo <[email protected]>"
],
"engines": {
"node": ">=16"
},
"type": "module",
"types": "dist/esm/types/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.cjs",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"format": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint": "eslint '*/**/*.{js,ts}'",
"prepublish": "pnpm run build && pnpm run build:cjs",
"test": "vitest run test/unit/* --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"keywords": [
"axiom",
"api",
"rest",
"client",
"axiom-js",
"axiom sdk",
"axiom js",
"logging"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/js/README.md",
"dependencies": {
"fetch-retry": "^6.0.0",
"uuid": "^8.3.2"
},
"exports": {
"types": "./dist/esm/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
}
}
"name": "@axiomhq/js",
"description": "The official javascript bindings for the Axiom API",
"version": "1.1.1",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Lukas Malkmus <[email protected]>",
"Islam Shehata <[email protected]>",
"Arne Bahlo <[email protected]>"
],
"engines": {
"node": ">=16"
},
"type": "module",
"types": "dist/esm/types/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.cjs",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"format": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint": "eslint '*/**/*.{js,ts}'",
"prepublish": "pnpm run build && pnpm run build:cjs",
"test": "vitest run test/unit/* --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"keywords": [
"axiom",
"api",
"rest",
"client",
"axiom-js",
"axiom sdk",
"axiom js",
"logging"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/js/README.md",
"dependencies": {
"fetch-retry": "^6.0.0",
"uuid": "^8.3.2"
},
"exports": {
"types": "./dist/esm/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
}
}
2 changes: 1 addition & 1 deletion packages/pino/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axiomhq/pino",
"version": "1.0.0",
"version": "1.1.1",
"description": "The official Axiom transport for Pino",
"type": "module",
"types": "dist/esm/types/index.d.ts",
Expand Down
94 changes: 47 additions & 47 deletions packages/winston/package.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
{
"name": "@axiomhq/winston",
"description": "The official Axiom transport for winston logger",
"version": "1.0.0",
"type": "module",
"types": "dist/esm/types/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.cjs",
"author": "Axiom, Inc.",
"license": "MIT",
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/winston/README.md",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"format": "eslint 'src/**/*.{js,ts}' --quiet --fix",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "vitest run test/unit/* --coverage",
"prepublish": "npm run build && npm run build:cjs"
},
"dependencies": {
"winston-transport": "^4.5.0",
"@axiomhq/js": "workspace:*"
},
"devDependencies": {
"winston": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"axiom",
"winston",
"axiom-js",
"axiom-winston"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"exports": {
"types": "./dist/esm/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
}
"name": "@axiomhq/winston",
"description": "The official Axiom transport for winston logger",
"version": "1.1.1",
"type": "module",
"types": "dist/esm/types/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.cjs",
"author": "Axiom, Inc.",
"license": "MIT",
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/winston/README.md",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"format": "eslint 'src/**/*.{js,ts}' --quiet --fix",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "vitest run test/unit/* --coverage",
"prepublish": "npm run build && npm run build:cjs"
},
"dependencies": {
"winston-transport": "^4.5.0",
"@axiomhq/js": "workspace:*"
},
"devDependencies": {
"winston": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"axiom",
"winston",
"axiom-js",
"axiom-winston"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"exports": {
"types": "./dist/esm/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
}
}

0 comments on commit f56f78d

Please sign in to comment.