@fastnear/borsh-schema 0.3.0 → 0.4.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 +5 -3
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@fastnear/borsh-schema",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Single export of NEAR Protocol's borsh schema for common applications",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "node esbuild.config.mjs",
8
8
  "publish": "yarn npm publish",
9
- "clean": "yarn rimraf dist node_modules"
9
+ "clean": "yarn rimraf dist node_modules",
10
+ "type-check": "tsc --noEmit"
10
11
  },
11
12
  "keywords": [
12
13
  "near-protocol",
@@ -24,6 +25,7 @@
24
25
  }
25
26
  },
26
27
  "devDependencies": {
27
- "rimraf": "*"
28
+ "rimraf": "*",
29
+ "typescript": "*"
28
30
  }
29
31
  }