Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@oclif/plugin-not-found": "^3.2.68",
"@oclif/plugin-plugins": "^5.4.47",
"@oclif/table": "^0.4.14",
"@solana/web3.js": "1.98.4",
"@solana/web3.js": "1.98.0",
"axios": "1.12.2",
"case-anything": "^2.1.13",
"cli-progress": "^3.12.0",
Expand Down
10 changes: 4 additions & 6 deletions js/compressed-token/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lightprotocol/compressed-token",
"version": "0.22.0",
"version": "0.22.1-alpha.0",
"description": "JS client to interact with the compressed-token program",
"sideEffects": false,
"main": "dist/cjs/node/index.cjs",
Expand Down Expand Up @@ -41,7 +41,6 @@
"devDependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@eslint/js": "9.36.0",
"@lightprotocol/hasher.rs": "0.2.1",
"@lightprotocol/programs": "workspace:*",
"@rollup/plugin-alias": "^5.1.0",
Expand All @@ -53,14 +52,13 @@
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@solana/spl-token": "0.4.8",
"@solana/web3.js": "1.98.4",
"@types/bn.js": "^5.1.5",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"add": "^2.0.6",
"crypto-browserify": "^3.12.0",
"eslint": "^9.36.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
Expand Down
2 changes: 1 addition & 1 deletion js/compressed-token/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const rolls = (fmt, env) => ({
external: [
'@solana/web3.js',
'@solana/spl-token',
'@coral-xyz/borsh',
// '@coral-xyz/borsh',
'@lightprotocol/stateless.js',
],
plugins: [
Expand Down
15 changes: 7 additions & 8 deletions js/stateless.js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lightprotocol/stateless.js",
"version": "0.22.0",
"version": "0.22.1-alpha.0",
"description": "JavaScript API for Light & ZK Compression",
"sideEffects": false,
"main": "dist/cjs/node/index.cjs",
Expand Down Expand Up @@ -35,12 +35,12 @@
],
"license": "Apache-2.0",
"peerDependencies": {
"@solana/web3.js": ">=1.73.5"
"@solana/web3.js": ">=1.73.5",
"bn.js": "^5.1.2"
},
"dependencies": {
"@coral-xyz/borsh": "^0.29.0",
"@noble/hashes": "1.5.0",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"buffer": "6.0.3",
"buffer-layout": "^1.2.2",
Expand All @@ -49,10 +49,10 @@
"superstruct": "2.0.2"
},
"devDependencies": {
"bn.js": "^5.1.2",
"@coral-xyz/anchor": "0.29.0",
"@coral-xyz/borsh": "^0.29.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@eslint/js": "9.36.0",
"@lightprotocol/hasher.rs": "0.2.1",
"@lightprotocol/programs": "workspace:*",
"@playwright/test": "^1.47.1",
Expand All @@ -63,12 +63,11 @@
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@solana/web3.js": "1.98.4",
"@types/bn.js": "^5.1.5",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.56.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vitest": "^0.5.4",
Expand Down
2 changes: 1 addition & 1 deletion js/stateless.js/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const rolls = (fmt, env) => ({
entryFileNames: `[name].${fmt === 'cjs' ? 'cjs' : 'js'}`,
sourcemap: true,
},
external: ['@solana/web3.js'],
external: ['@solana/web3.js', 'bn.js'],
plugins: [
replace({
preventAssignment: true,
Expand Down
Loading
Loading