@shipstatic/ship 1.0.2 → 2.0.0-beta.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/ship",
3
- "version": "1.0.2",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "SDK & CLI for ShipStatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -75,13 +75,13 @@
75
75
  "zod": "^4.4.2"
76
76
  },
77
77
  "devDependencies": {
78
- "@shipstatic/types": "^1.0.0",
78
+ "@biomejs/biome": "2.5.5",
79
+ "@shipstatic/types": "2.2.1-beta.0",
79
80
  "@types/columnify": "^1.5.4",
80
81
  "@types/node": "^20.19.39",
81
82
  "@types/spark-md5": "^3.0.5",
82
83
  "@vitest/coverage-v8": "^3.2.4",
83
84
  "esbuild": "^0.23.1",
84
- "husky": "^9.1.7",
85
85
  "jsdom": "^24.1.3",
86
86
  "memfs": "4.50.0",
87
87
  "msw": "^2.14.2",
@@ -97,7 +97,10 @@
97
97
  "test:integration": "vitest --project integration",
98
98
  "test:e2e": "vitest --project e2e",
99
99
  "test:ci": "vitest --run",
100
+ "typecheck": "tsc --noEmit",
100
101
  "clean": "rm -rf dist",
101
- "build": "pnpm run clean && tsup && node scripts/post-build.cjs"
102
+ "build": "pnpm run clean && tsup && node scripts/post-build.cjs",
103
+ "lint": "biome check .",
104
+ "format": "biome format --write ."
102
105
  }
103
106
  }