sb-edit-custom 0.20.143 → 0.20.144

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.
@@ -4,4 +4,5 @@ export interface CostumeModel {
4
4
  ext: string;
5
5
  centerX: number | null;
6
6
  centerY: number | null;
7
+ bitmapResolution?: number;
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sb-edit-custom",
3
- "version": "0.20.143",
3
+ "version": "0.20.144",
4
4
  "description": "Import, edit, and export Scratch project files",
5
5
  "keywords": [
6
6
  "Scratch",
@@ -27,7 +27,17 @@
27
27
  "bin": {
28
28
  "sb-edit": "lib/cli/index.js"
29
29
  },
30
+ "scripts": {
31
+ "build": "tsc",
32
+ "format": "prettier --write \"src/**/*.ts\"",
33
+ "lint": "eslint \"src/**/*.ts\"",
34
+ "prepare": "npm run build",
35
+ "prepublishOnly": "echo 'Skipping tests and linting for publish'",
36
+ "test": "jest --config jestconfig.json",
37
+ "watch": "tsc -w"
38
+ },
30
39
  "dependencies": {
40
+ "@repo/prologue": "workspace:*",
31
41
  "canvas": "^3.1.2",
32
42
  "chalk": "^4.1.2",
33
43
  "commander": "^12.0.0",
@@ -49,18 +59,11 @@
49
59
  "jest": "^29.7.0",
50
60
  "prettier": "3.6.2",
51
61
  "ts-jest": "^29.1.1",
52
- "typescript": "5.9.3"
62
+ "typescript": "catalog:"
53
63
  },
54
64
  "prettier": {
55
65
  "plugins": [
56
66
  "prettier-plugin-tailwindcss"
57
67
  ]
58
- },
59
- "scripts": {
60
- "build": "tsc",
61
- "format": "prettier --write \"src/**/*.ts\"",
62
- "lint": "eslint \"src/**/*.ts\"",
63
- "test": "jest --config jestconfig.json",
64
- "watch": "tsc -w"
65
68
  }
66
- }
69
+ }