@k67/kaitai-struct-ts 0.2.0 → 0.3.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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public",
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
7
- "version": "0.2.0",
7
+ "version": "0.3.0",
8
8
  "description": "Runtime interpreter for Kaitai Struct binary format definitions in TypeScript",
9
9
  "main": "./dist/index.js",
10
10
  "module": "./dist/index.mjs",
@@ -21,23 +21,6 @@
21
21
  "README.md",
22
22
  "LICENSE"
23
23
  ],
24
- "scripts": {
25
- "build": "tsup",
26
- "dev": "tsup --watch",
27
- "test": "vitest run",
28
- "test:watch": "vitest",
29
- "test:ui": "vitest --ui",
30
- "test:coverage": "vitest run --coverage",
31
- "lint": "eslint src --ext .ts",
32
- "lint:fix": "eslint src --ext .ts --fix",
33
- "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
34
- "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
35
- "typecheck": "tsc --noEmit",
36
- "changeset": "changeset",
37
- "changeset:version": "changeset version",
38
- "changeset:publish": "changeset publish",
39
- "prepublishOnly": "pnpm run build && pnpm run test && pnpm run lint"
40
- },
41
24
  "keywords": [
42
25
  "kaitai",
43
26
  "kaitai-struct",
@@ -59,7 +42,6 @@
59
42
  "url": "https://github.com/fabianopinto/kaitai-struct-ts/issues"
60
43
  },
61
44
  "homepage": "https://github.com/fabianopinto/kaitai-struct-ts#readme",
62
- "packageManager": "pnpm@10.16.1",
63
45
  "engines": {
64
46
  "node": ">=18.0.0"
65
47
  },
@@ -80,5 +62,21 @@
80
62
  },
81
63
  "dependencies": {
82
64
  "yaml": "^2.8.1"
65
+ },
66
+ "scripts": {
67
+ "build": "tsup",
68
+ "dev": "tsup --watch",
69
+ "test": "vitest run",
70
+ "test:watch": "vitest",
71
+ "test:ui": "vitest --ui",
72
+ "test:coverage": "vitest run --coverage",
73
+ "lint": "eslint src --ext .ts",
74
+ "lint:fix": "eslint src --ext .ts --fix",
75
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
76
+ "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
77
+ "typecheck": "tsc --noEmit",
78
+ "changeset": "changeset",
79
+ "changeset:version": "changeset version",
80
+ "changeset:publish": "changeset publish"
83
81
  }
84
- }
82
+ }