@solana/codecs 2.0.0-experimental.fd64233 → 2.0.0-preview.1

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 +12 -28
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/codecs",
3
- "version": "2.0.0-experimental.fd64233",
3
+ "version": "2.0.0-preview.1",
4
4
  "description": "A library for encoding and decoding any data structure",
5
5
  "exports": {
6
6
  "browser": {
@@ -46,28 +46,11 @@
46
46
  "maintained node versions"
47
47
  ],
48
48
  "dependencies": {
49
- "@solana/codecs-core": "2.0.0-experimental.fd64233",
50
- "@solana/codecs-data-structures": "2.0.0-experimental.fd64233",
51
- "@solana/codecs-numbers": "2.0.0-experimental.fd64233",
52
- "@solana/codecs-strings": "2.0.0-experimental.fd64233",
53
- "@solana/options": "2.0.0-experimental.fd64233"
54
- },
55
- "devDependencies": {
56
- "@solana/eslint-config-solana": "^1.0.2",
57
- "@typescript-eslint/eslint-plugin": "^6.13.2",
58
- "@typescript-eslint/parser": "^6.3.0",
59
- "agadoo": "^3.0.0",
60
- "eslint": "^8.45.0",
61
- "eslint-plugin-jest": "^27.4.2",
62
- "eslint-plugin-sort-keys-fix": "^1.1.2",
63
- "jest": "^29.7.0",
64
- "prettier": "^3.1",
65
- "tsup": "^8.0.1",
66
- "typescript": "^5.2.2",
67
- "version-from-git": "^1.1.1",
68
- "build-scripts": "0.0.0",
69
- "test-config": "0.0.0",
70
- "tsconfig": "0.0.0"
49
+ "@solana/codecs-core": "2.0.0-preview.1",
50
+ "@solana/codecs-numbers": "2.0.0-preview.1",
51
+ "@solana/options": "2.0.0-preview.1",
52
+ "@solana/codecs-data-structures": "2.0.0-preview.1",
53
+ "@solana/codecs-strings": "2.0.0-preview.1"
71
54
  },
72
55
  "bundlewatch": {
73
56
  "defaultCompression": "gzip",
@@ -79,12 +62,13 @@
79
62
  },
80
63
  "scripts": {
81
64
  "compile:js": "tsup --config build-scripts/tsup.config.package.ts",
82
- "compile:typedefs": "tsc -p ./tsconfig.declarations.json && node node_modules/build-scripts/add-js-extension-to-types.mjs",
83
- "dev": "jest -c node_modules/test-config/jest-dev.config.ts --rootDir . --watch",
84
- "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 preview --access public --no-git-checks",
68
+ "publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
85
69
  "style:fix": "pnpm eslint --fix src/* && pnpm prettier -w src/* package.json",
86
- "test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent",
87
- "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",
88
72
  "test:treeshakability:browser": "agadoo dist/index.browser.js",
89
73
  "test:treeshakability:native": "agadoo dist/index.native.js",
90
74
  "test:treeshakability:node": "agadoo dist/index.node.js",