@ic-reactor/candid 3.0.0-beta.0 → 3.0.1-beta.0

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 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ic-reactor/candid",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.1-beta.0",
4
4
  "description": "IC Reactor Candid Adapter - Fetch and parse Candid definitions from Internet Computer canisters",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -18,13 +18,6 @@
18
18
  "dist",
19
19
  "README.md"
20
20
  ],
21
- "scripts": {
22
- "build": "rm -rf dist tsconfig.tsbuildinfo && tsc -b",
23
- "test": "vitest run",
24
- "version:sync": "node -e \"const pkg = require('./package.json'); const fs = require('fs'); fs.writeFileSync('./src/version.ts', '/**\\n * Library version - automatically synced from package.json.\\n */\\nexport const VERSION = \\\"' + pkg.version + '\\\"\\n');\"",
25
- "size": "size-limit",
26
- "analyze": "size-limit --why"
27
- },
28
21
  "repository": {
29
22
  "type": "git",
30
23
  "url": "https://github.com/B3Pay/ic-reactor",
@@ -48,7 +41,7 @@
48
41
  "author": "Behrad Deylami",
49
42
  "license": "MIT",
50
43
  "dependencies": {
51
- "@ic-reactor/core": "workspace:^"
44
+ "@ic-reactor/core": "^3.0.1-beta.0"
52
45
  },
53
46
  "peerDependencies": {
54
47
  "@icp-sdk/core": "^5.0.0"
@@ -68,5 +61,12 @@
68
61
  "limit": "10 KB",
69
62
  "gzip": true
70
63
  }
71
- ]
72
- }
64
+ ],
65
+ "scripts": {
66
+ "build": "rm -rf dist tsconfig.tsbuildinfo && tsc -b",
67
+ "test": "vitest run",
68
+ "version:sync": "node -e \"const pkg = require('./package.json'); const fs = require('fs'); fs.writeFileSync('./src/version.ts', '/**\\n * Library version - automatically synced from package.json.\\n */\\nexport const VERSION = \\\"' + pkg.version + '\\\"\\n');\"",
69
+ "size": "size-limit",
70
+ "analyze": "size-limit --why"
71
+ }
72
+ }