@shipstatic/ship 2.0.0-beta.2 → 2.0.0-beta.4
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/README.md +10 -10
- package/dist/browser.d.ts +126 -81
- package/dist/browser.js +1 -1
- package/dist/browser.js.map +1 -1
- package/dist/cli.cjs +29 -29
- package/dist/cli.cjs.map +1 -1
- package/dist/completions/ship.fish +1 -1
- package/dist/completions/ship.zsh +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +129 -81
- package/dist/index.d.ts +126 -81
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +35 -29
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipstatic/ship",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.4",
|
|
4
4
|
"description": "SDK & CLI for ShipStatic platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"browser": "./dist/browser.js",
|
|
9
|
-
"types": "./dist/index.d.
|
|
9
|
+
"types": "./dist/index.d.cts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"browser": {
|
|
@@ -26,6 +26,22 @@
|
|
|
26
26
|
"bin": {
|
|
27
27
|
"ship": "./dist/cli.cjs"
|
|
28
28
|
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"test": "vitest --project unit --project integration",
|
|
31
|
+
"test:unit": "vitest --project unit",
|
|
32
|
+
"test:integration": "vitest --project integration",
|
|
33
|
+
"test:e2e": "vitest --project e2e",
|
|
34
|
+
"test:ci": "vitest --run --project unit --project integration",
|
|
35
|
+
"typecheck": "tsc -p tsconfig.check.json --noEmit",
|
|
36
|
+
"clean": "rm -rf dist",
|
|
37
|
+
"build": "pnpm run clean && tsup && node scripts/post-build.cjs",
|
|
38
|
+
"prepare": "git config core.hooksPath scripts/githooks",
|
|
39
|
+
"lint": "biome check .",
|
|
40
|
+
"format": "biome format --write .",
|
|
41
|
+
"coverage": "vitest --run --project unit --project integration --coverage",
|
|
42
|
+
"check:package": "publint && attw --pack .",
|
|
43
|
+
"test:browser": "vitest --run --project browser"
|
|
44
|
+
},
|
|
29
45
|
"files": [
|
|
30
46
|
"dist",
|
|
31
47
|
"README.md",
|
|
@@ -64,43 +80,33 @@
|
|
|
64
80
|
"sideEffects": false,
|
|
65
81
|
"dependencies": {
|
|
66
82
|
"columnify": "^1.6.0",
|
|
67
|
-
"commander": "^
|
|
68
|
-
"cosmiconfig": "^9.0.
|
|
83
|
+
"commander": "^14.0.3",
|
|
84
|
+
"cosmiconfig": "^9.0.2",
|
|
69
85
|
"form-data-encoder": "^4.1.0",
|
|
70
86
|
"formdata-node": "^6.0.3",
|
|
71
87
|
"junk": "^4.0.1",
|
|
72
88
|
"spark-md5": "^3.0.2",
|
|
73
|
-
"yocto-spinner": "^1.2.
|
|
74
|
-
"yoctocolors": "^2.
|
|
75
|
-
"zod": "^4.4.
|
|
89
|
+
"yocto-spinner": "^1.2.2",
|
|
90
|
+
"yoctocolors": "^2.2.0",
|
|
91
|
+
"zod": "^4.4.3"
|
|
76
92
|
},
|
|
77
93
|
"devDependencies": {
|
|
94
|
+
"@arethetypeswrong/cli": "^0.18.5",
|
|
78
95
|
"@biomejs/biome": "2.5.5",
|
|
79
|
-
"@shipstatic/types": "2.
|
|
96
|
+
"@shipstatic/types": "2.5.0-beta.6",
|
|
80
97
|
"@types/columnify": "^1.5.4",
|
|
81
|
-
"@types/node": "^20.19.
|
|
98
|
+
"@types/node": "^20.19.43",
|
|
82
99
|
"@types/spark-md5": "^3.0.5",
|
|
83
|
-
"@vitest/
|
|
84
|
-
"
|
|
100
|
+
"@vitest/browser-playwright": "4.1.10",
|
|
101
|
+
"@vitest/coverage-v8": "4.1.10",
|
|
102
|
+
"fast-check": "^4.9.0",
|
|
85
103
|
"jsdom": "^24.1.3",
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"ts-node": "^10.9.2",
|
|
104
|
+
"playwright": "1.62.0",
|
|
105
|
+
"publint": "^0.3.22",
|
|
89
106
|
"tsup": "^8.5.1",
|
|
90
107
|
"typescript": "^5.9.3",
|
|
91
|
-
"vite
|
|
92
|
-
"vitest": "
|
|
108
|
+
"vite": "^8.1.5",
|
|
109
|
+
"vitest": "4.1.10"
|
|
93
110
|
},
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
"test:unit": "vitest --project unit",
|
|
97
|
-
"test:integration": "vitest --project integration",
|
|
98
|
-
"test:e2e": "vitest --project e2e",
|
|
99
|
-
"test:ci": "vitest --run",
|
|
100
|
-
"typecheck": "tsc --noEmit",
|
|
101
|
-
"clean": "rm -rf dist",
|
|
102
|
-
"build": "pnpm run clean && tsup && node scripts/post-build.cjs",
|
|
103
|
-
"lint": "biome check .",
|
|
104
|
-
"format": "biome format --write ."
|
|
105
|
-
}
|
|
106
|
-
}
|
|
111
|
+
"packageManager": "pnpm@10.12.4"
|
|
112
|
+
}
|