@solana/options 2.0.0-experimental.dd2096e → 2.0.0-experimental.dfb72ea

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +11 -32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/options",
3
- "version": "2.0.0-experimental.dd2096e",
3
+ "version": "2.0.0-experimental.dfb72ea",
4
4
  "description": "Managing and serializing Rust-like Option types in JavaScript",
5
5
  "exports": {
6
6
  "browser": {
@@ -49,30 +49,8 @@
49
49
  "node": ">=17.4"
50
50
  },
51
51
  "dependencies": {
52
- "@solana/codecs-core": "2.0.0-experimental.dd2096e",
53
- "@solana/codecs-numbers": "2.0.0-experimental.dd2096e"
54
- },
55
- "devDependencies": {
56
- "@solana/eslint-config-solana": "^1.0.2",
57
- "@swc/jest": "^0.2.29",
58
- "@types/jest": "^29.5.11",
59
- "@typescript-eslint/eslint-plugin": "^6.13.2",
60
- "@typescript-eslint/parser": "^6.3.0",
61
- "agadoo": "^3.0.0",
62
- "eslint": "^8.45.0",
63
- "eslint-plugin-jest": "^27.4.2",
64
- "eslint-plugin-sort-keys-fix": "^1.1.2",
65
- "jest": "^29.7.0",
66
- "jest-environment-jsdom": "^29.7.0",
67
- "jest-runner-eslint": "^2.1.2",
68
- "jest-runner-prettier": "^1.0.0",
69
- "prettier": "^3.1",
70
- "tsup": "^8.0.1",
71
- "typescript": "^5.2.2",
72
- "version-from-git": "^1.1.1",
73
- "build-scripts": "0.0.0",
74
- "test-config": "0.0.0",
75
- "tsconfig": "0.0.0"
52
+ "@solana/codecs-core": "2.0.0-experimental.dfb72ea",
53
+ "@solana/codecs-numbers": "2.0.0-experimental.dfb72ea"
76
54
  },
77
55
  "bundlewatch": {
78
56
  "defaultCompression": "gzip",
@@ -84,17 +62,18 @@
84
62
  },
85
63
  "scripts": {
86
64
  "compile:js": "tsup --config build-scripts/tsup.config.package.ts",
87
- "compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/build-scripts/add-js-extension-to-types.mjs",
88
- "dev": "jest -c node_modules/test-config/jest-dev.config.ts --rootDir . --watch",
89
- "publish-packages": "pnpm publish --tag experimental --access public --no-git-checks",
65
+ "compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/@solana/build-scripts/add-js-extension-to-types.mjs",
66
+ "dev": "jest -c node_modules/@solana/test-config/jest-dev.config.ts --rootDir . --watch",
67
+ "publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || pnpm publish --tag experimental --access public --no-git-checks",
68
+ "publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
90
69
  "style:fix": "pnpm eslint --fix src/* && pnpm prettier -w src/* package.json",
91
- "test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent",
92
- "test:prettier": "jest -c node_modules/test-config/jest-prettier.config.ts --rootDir . --silent",
70
+ "test:lint": "jest -c node_modules/@solana/test-config/jest-lint.config.ts --rootDir . --silent",
71
+ "test:prettier": "jest -c node_modules/@solana/test-config/jest-prettier.config.ts --rootDir . --silent",
93
72
  "test:treeshakability:browser": "agadoo dist/index.browser.js",
94
73
  "test:treeshakability:native": "agadoo dist/index.node.js",
95
74
  "test:treeshakability:node": "agadoo dist/index.native.js",
96
75
  "test:typecheck": "tsc --noEmit",
97
- "test:unit:browser": "jest -c node_modules/test-config/jest-unit.config.browser.ts --rootDir . --silent",
98
- "test:unit:node": "jest -c node_modules/test-config/jest-unit.config.node.ts --rootDir . --silent"
76
+ "test:unit:browser": "jest -c node_modules/@solana/test-config/jest-unit.config.browser.ts --rootDir . --silent",
77
+ "test:unit:node": "jest -c node_modules/@solana/test-config/jest-unit.config.node.ts --rootDir . --silent"
99
78
  }
100
79
  }