@automate.ax/codec 0.75.0 → 0.77.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.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -4
- package/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/codec",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.0",
|
|
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": "
|
|
44
|
-
"lint:fix": "
|
|
43
|
+
"lint": "oxlint --type-aware --threads=2 && bun --bun eslint . --cache --cache-strategy content",
|
|
44
|
+
"lint:fix": "oxlint --type-aware --threads=2 --fix --fix-suggestions && bun --bun eslint . --fix --cache --cache-strategy content",
|
|
45
45
|
"check": "bun run typecheck && bun run lint",
|
|
46
46
|
"test": "vitest run --testTimeout 10000",
|
|
47
47
|
"build": "zshy",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"@types/bun": "latest",
|
|
62
62
|
"@typescript/native": "npm:typescript@^7.0.2",
|
|
63
63
|
"@zachsents/oxlint-config": "^0.4.1",
|
|
64
|
-
"concurrently": "^10.0.4",
|
|
65
64
|
"eslint": "^9.39.5",
|
|
66
65
|
"oxlint": "^1.76.0",
|
|
67
66
|
"oxlint-tsgolint": "^7.0.2001",
|
package/src/index.ts
CHANGED