json-as 0.9.7 → 0.9.8

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
@@ -12,5 +12,6 @@ v0.9.4 - Fix #77
12
12
  v0.9.5 - Fix #46
13
13
  v0.9.6 - Fix bugs
14
14
  v0.9.7 - Update testing framework and readme logo
15
+ v0.9.8 - Update dependencies
15
16
 
16
17
  [UNRELEASED] v0.9.x - Port JSON.Value from the `develop` branch to allow for union types, parsing of arbitrary data, and whatever the hell you want.
package/README.md CHANGED
@@ -1,11 +1,9 @@
1
1
  <h5 align="center">
2
- <pre>
3
- _____ _____ __ _____ _____ _____
4
- | _ | __|___ __| | __| | | |
5
- | |__ |___| | |__ | | | | | |
6
- |__|__|_____| |_____|_____|_____|_|___|
7
-
8
- v0.9.7
2
+ <pre> __ _____ _____ _____ _____ _____
3
+ __| || __|| || | | ___ | _ || __|
4
+ | | ||__ || | || | | ||___|| ||__ |
5
+ |_____||_____||_____||_|___| |__|__||_____|
6
+ v0.9.8
9
7
  </pre>
10
8
  </h5>
11
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-as",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "JSON encoder/decoder for AssemblyScript",
5
5
  "types": "assembly/index.ts",
6
6
  "author": "Jairus Tanaka",
@@ -33,19 +33,19 @@
33
33
  "devDependencies": {
34
34
  "@assemblyscript/wasi-shim": "^0.1.0",
35
35
  "as-bench": "^0.0.0-alpha",
36
- "assemblyscript": "^0.27.22",
36
+ "assemblyscript": "^0.27.27",
37
37
  "assemblyscript-prettier": "^3.0.1",
38
38
  "benchmark": "^2.1.4",
39
39
  "microtime": "^3.1.1",
40
- "prettier": "^3.1.1",
41
- "tinybench": "^2.5.1",
42
- "typescript": "^5.3.3",
40
+ "prettier": "^3.3.2",
41
+ "tinybench": "^2.8.0",
42
+ "typescript": "^5.4.5",
43
43
  "visitor-as": "^0.11.4"
44
44
  },
45
45
  "dependencies": {
46
46
  "as-container": "^0.8.0",
47
47
  "as-string-sink": "^0.5.3",
48
- "as-test": "^0.0.2",
48
+ "as-test": "^0.0.3",
49
49
  "as-variant": "^0.4.1",
50
50
  "as-virtual": "^0.2.0"
51
51
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-as/transform",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "JSON encoder/decoder for AssemblyScript",
5
5
  "main": "./lib/index.js",
6
6
  "author": "Jairus Tanaka",