json-as 0.9.25 → 0.9.26

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.
package/CHANGELOG CHANGED
@@ -32,6 +32,8 @@ v0.9.22 - Fix #89 and #93. Several bug fixes some severe such as ",null" being p
32
32
  v0.9.23 - Comment out SIMD-related code for now
33
33
  v0.9.24 - Remove transform changes from previous release
34
34
  v0.9.25 - Implement JSON.parseSafe
35
+ v0.9.26 - Remove unnecessary dependencies
36
+
35
37
  [UNRELEASED] v1.0.0
36
38
  - Allow nullable primitives
37
39
  - Port over JSON.Value
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  __| || __|| || | | ___ | _ || __|
4
4
  | | ||__ || | || | | ||___|| ||__ |
5
5
  |_____||_____||_____||_|___| |__|__||_____|
6
- v0.9.25
6
+ v0.9.26
7
7
  </pre>
8
8
  </h5>
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-as",
3
- "version": "0.9.25",
3
+ "version": "0.9.26",
4
4
  "description": "The only JSON library you'll need for AssemblyScript. SIMD enabled",
5
5
  "types": "assembly/index.ts",
6
6
  "author": "Jairus Tanaka",
@@ -44,9 +44,7 @@
44
44
  "visitor-as": "^0.11.4"
45
45
  },
46
46
  "dependencies": {
47
- "@hypermode/modus-sdk-as": "^0.13.0-prerelease-test-1",
48
- "as-virtual": "^0.2.0",
49
- "chalk": "^5.3.0"
47
+ "as-virtual": "^0.2.0"
50
48
  },
51
49
  "overrides": {
52
50
  "assemblyscript": "$assemblyscript"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-as/transform",
3
- "version": "0.9.25",
3
+ "version": "0.9.26",
4
4
  "description": "The only JSON library you'll need for AssemblyScript. SIMD enabled",
5
5
  "main": "./lib/index.js",
6
6
  "author": "Jairus Tanaka",