Skip to content

Commit

Permalink
chore: library package.json version update
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianmusial committed Jun 13, 2024
1 parent 4580fbf commit 40e49a4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ nest new project-name
Install the library using npm:

```bash
npm i @boldare/openai-assistant --save
npm i @boldare/openai-assistant openai --save
```

### Step 2: Env variables
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function bootstrap() {
const globalPrefix = 'api';
const config = new DocumentBuilder()
.setTitle('@boldare/openai-assistant')
.setVersion('1.1.0')
.setVersion('1.2.0')
.build();
const document = SwaggerModule.createDocument(app, config);

Expand Down
17 changes: 9 additions & 8 deletions libs/openai-assistant/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
{
"name": "@boldare/openai-assistant",
"description": "NestJS library for building chatbot solutions based on the OpenAI Assistant API",
"version": "1.1.0",
"version": "1.2.0",
"private": false,
"dependencies": {
"tslib": "^2.3.0",
"openai": "^4.45.0",
"dotenv": "^16.4.5",
"envfile": "^7.1.0",
"@nestjs/common": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"dotenv": "^16.3.1",
"envfile": "^7.1.0",
"@nestjs/axios": "^3.0.1",
"@nestjs/websockets": "^10.3.0",
"@nestjs/platform-socket.io": "^10.3.0",
"@nestjs/swagger": "^7.3.0",
"socket.io": "^4.7.3",
"@nestjs/websockets": "^10.3.0",
"multer": "^1.4.4-lts.1",
"class-validator": "^0.14.1"
"class-validator": "^0.14.1",
"socket.io": "^4.7.3"
},
"peerDependencies": {
"openai": "^4.51.0"
},
"type": "commonjs",
"main": "./src/index.js",
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "@boldare/source",
"version": "1.1.0",
"version": "1.2.0",
"license": "MIT",
"scripts": {
"set-env": "ts-node libs/ai-embedded/set-env.mjs",
"start": "node dist/apps/api/main.js",
"start:dev": "nx run-many --parallel --target=serve --projects=api,spa ",
"reset": "nx reset",
"start:spa": "nx serve spa",
"start:api": "nx serve api",
"update": "nx migrate latest && nx migrate --run-migrations",
Expand Down

0 comments on commit 40e49a4

Please sign in to comment.