Skip to content

Commit

Permalink
fix(sqdsx): extra package.json configs
Browse files Browse the repository at this point in the history
  • Loading branch information
joeymeere committed Aug 31, 2024
1 parent ff9e8e8 commit 92d8059
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 6 additions & 1 deletion sdk/multisig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"license": "MIT",
"sideEffects": false,
"scripts": {
"build:js": "tsup src/index.ts --format esm,cjs --outDir lib",
"build:types": "tsc --emitDeclarationOnly",
Expand Down Expand Up @@ -42,5 +44,8 @@
"tsup": "^8.0.2",
"typedoc": "^0.25.7",
"typescript": "*"
},
"engines": {
"node": ">=14"
}
}
3 changes: 1 addition & 2 deletions sdk/multisig/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "lib"]
"include": ["src/**/*"]
}
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@
dependencies:
buffer "^6.0.3"

"@solana/spl-token@*", "@solana/spl-token@^0.3.6":
"@solana/spl-token@*", "@solana/spl-token@0.3.6", "@solana/spl-token@^0.3.6":
version "0.3.6"
resolved "https://registry.yarnpkg.com/@solana/spl-token/-/spl-token-0.3.6.tgz#35473ad2ed71fe91e5754a2ac72901e1b8b26a42"
integrity sha512-P9pTXjDIRvVbjr3J0mCnSamYqLnICeds7IoH1/Ro2R9OBuOHdp5pqKZoscfZ3UYrgnCWUc1bc9M2m/YPHjw+1g==
Expand All @@ -393,7 +393,7 @@
"@solana/buffer-layout-utils" "^0.2.0"
buffer "^6.0.3"

"@solana/web3.js@^1.32.0", "@solana/web3.js@^1.56.2", "@solana/web3.js@^1.70.3":
"@solana/web3.js@1.70.3", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.56.2", "@solana/web3.js@^1.70.3":
version "1.70.3"
resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.70.3.tgz#44040a78d1f86ee6a0a9dbe391b5f891bb404265"
integrity sha512-9JAFXAWB3yhUHnoahzemTz4TcsGqmITPArNlm9795e+LA/DYkIEJIXIosV4ImzDMfqolymZeRgG3O8ewNgYTTA==
Expand Down Expand Up @@ -2203,7 +2203,7 @@ typedoc@^0.25.7:
minimatch "^9.0.3"
shiki "^0.14.7"

typescript@*:
typescript@*, [email protected]:
version "4.9.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
Expand Down

0 comments on commit 92d8059

Please sign in to comment.