fix(librechat-data-provider): Update types paths in package.json (#1333)

* fix(librechat-data-provider): Update types paths in package.json

* chore: bump version

* fix(librechat-data-provider): Update types paths in react-query/package.json
This commit is contained in:
Danny Avila 2023-12-12 09:16:29 -05:00 committed by GitHub
parent 6829d66c1f
commit fac2580a19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -1,20 +1,20 @@
{
"name": "librechat-data-provider",
"version": "0.3.0",
"version": "0.3.1",
"description": "data services for librechat apps",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "./types/index.d.ts",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js",
"types": "./types/index.d.ts"
"types": "./dist/types/index.d.ts"
},
"./react-query": {
"import": "./dist/react-query/index.es.js",
"require": "./dist/react-query/index.js",
"types": "./types/react-query/index.d.ts"
"types": "./dist/types/react-query/index.d.ts"
}
},
"scripts": {

View file

@ -3,7 +3,7 @@
"private": true,
"main": "../index.js",
"module": "./index.es.js",
"types": "../types/react-query/index.d.ts",
"types": "../dist/types/react-query/index.d.ts",
"dependencies": {
"axios": "^1.3.4"
}