Skip to content

Commit

Permalink
chore: release v0.4.35-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nevehallon committed Nov 7, 2023
1 parent c2b57c1 commit 23a8e6b
Showing 1 changed file with 23 additions and 20 deletions.
43 changes: 23 additions & 20 deletions bageldb-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bageldb/bagel-db",
"version": "0.4.34-beta.0.9",
"version": "0.4.35-beta.0",
"description": "A simple way to communicate with BagelDB, wrapping the REST http endpoints in easy to use functions",
"type": "module",
"types": "./dist/index.d.ts",
Expand All @@ -15,28 +15,30 @@
"./src/interfaces": "./src/interfaces.ts",
"./src/index": "./src/index.ts",
".": {
"import": "./dist/index.mjs",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": {
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"module": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"default": "./dist/index.cjs"
}
},
"module": "./dist/index.mjs",
"module": "./dist/index.js",
"scripts": {
"build": "webpack --mode=production",
"typecheck": "tsc --noEmit",
"bump": "bumpp",
"prepare": "npm run build",
"build": "webpack --mode=production",
"start:dev": "webpack --mode=development --watch --progress",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build:types": "yarn run tsc --emitDeclarationOnly",
"publish:beta:prod": "npm publish --access public --tag beta",
"publish:prod": "npm publish --access public",
"publish:dev": "npm publish --access public --dry-run"
"publish:beta:prod": "bumpp && npm publish --access public --tag beta",
"publish:prod": "bumpp && npm publish --access public",
"publish:dev": "bumpp && npm publish --access public --dry-run"
},
"repository": {
"type": "git",
Expand All @@ -54,7 +56,7 @@
"homepage": "https://docs.bageldb.com",
"dependencies": {
"axios": "^1.6.0",
"mongodb": "^6.1.0",
"mongodb": "^6.2.0",
"std-env": "^3.4.3"
},
"optionalDependencies": {
Expand All @@ -67,18 +69,19 @@
"@babel/core": "^7.23.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.2",
"@types/axios-curlirize": "^1.3.2",
"@types/eslint": "^8.44.4",
"@types/eventsource": "^1.1.12",
"@types/node": "^20.8.6",
"@types/webpack-node-externals": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"bumpp": "^9.2.0",
"@types/axios-curlirize": "^1.3.5",
"@types/eslint": "^8.44.7",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.8.10",
"@types/webpack-node-externals": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.51.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"expose-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.3",
Expand All @@ -100,4 +103,4 @@
"node_modules/",
"dist/"
]
}
}

0 comments on commit 23a8e6b

Please sign in to comment.