Skip to content

Commit

Permalink
Merge pull request #29 from ecency/feature/nextjs
Browse files Browse the repository at this point in the history
Updated package json for next build
  • Loading branch information
feruzm authored Aug 29, 2024
2 parents 7749f06 + edbe793 commit 446f219
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
{
"name": "@ecency/ns-query",
"description": "React-query based Nostr protocol SDK for Ecency vision and mobile",
"version": "1.2.7-next",
"version": "1.2.9-next",
"repository": "https://github.com/ecency/ns-query",
"author": "ildar.timerbaev <dkildar@gmail.com>",
"license": "MIT",
"main": "index.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "dist/index.d.ts",
Expand All @@ -31,16 +37,12 @@
},
"peerDependencies": {
"@tanstack/react-query": "^5.15.0",
"axios": "1.6.0",
"axios": "1.6.2",
"date-fns": "^2.30.0",
"react": "^18.3.1"
},
"dependencies": {
"@tanstack/react-query": "^5.15.0",
"axios": "1.6.0",
"date-fns": "^2.30.0",
"nostr-tools": "^1.17.0",
"react": "^18.3.1"
"nostr-tools": "^1.17.0"
},
"scripts": {
"build": "rimraf dist & tsc & vite build",
Expand Down

0 comments on commit 446f219

Please sign in to comment.