@automate.ax/codec 0.3.1 → 0.4.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.
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/codec",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Msgpack-based encoding helpers for Automate.ax runtime data.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"typecheck": "tsc --noEmit",
|
|
43
|
-
"lint": "oxlint --type-aware",
|
|
44
|
-
"lint:fix": "oxlint --type-aware --fix-suggestions",
|
|
43
|
+
"lint": "concurrently --success all --kill-others-on-fail \"oxlint --type-aware\" \"bun --bun eslint .\"",
|
|
44
|
+
"lint:fix": "concurrently --success all --kill-others-on-fail \"oxlint --type-aware --fix --fix-suggestions\" \"bun --bun eslint . --fix\"",
|
|
45
45
|
"check": "bun run typecheck && bun run lint",
|
|
46
46
|
"test": "vitest run",
|
|
47
47
|
"build": "zshy",
|
|
@@ -59,6 +59,12 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@internal/config": "0.0.0",
|
|
61
61
|
"@types/bun": "latest",
|
|
62
|
+
"@typescript/native": "npm:typescript@^7.0.2",
|
|
63
|
+
"@zachsents/oxlint-config": "^0.4.1",
|
|
64
|
+
"concurrently": "^10.0.4",
|
|
65
|
+
"eslint": "^9.39.5",
|
|
66
|
+
"oxlint": "^1.76.0",
|
|
67
|
+
"oxlint-tsgolint": "^7.0.2001",
|
|
62
68
|
"vitest": "^4.1.9",
|
|
63
69
|
"zshy": "^0.7.2"
|
|
64
70
|
},
|