defuss-ssg 0.6.2 → 0.6.3
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 +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "defuss-ssg",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"pretest": "bun run build",
|
|
27
27
|
"prebuild": "bun run clean",
|
|
28
28
|
"build": "pkgroll",
|
|
29
|
+
"test:browser": "vitest run --config vitest.browser.config.ts --passWithNoTests",
|
|
29
30
|
"cli-dev": "node ./dist/cli.mjs dev ../../example-ssg/",
|
|
30
31
|
"cli-build": "node ./dist/cli.mjs build ../../example-ssg/",
|
|
31
32
|
"cli-serve": "node ./dist/cli.mjs serve ../../example-ssg/",
|
|
@@ -106,12 +107,17 @@
|
|
|
106
107
|
"ws": "^8.20.0"
|
|
107
108
|
},
|
|
108
109
|
"devDependencies": {
|
|
110
|
+
"@vitest/browser": "^4.0.17",
|
|
111
|
+
"@vitest/browser-playwright": "^4.0.17",
|
|
112
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
109
113
|
"@types/autocannon": "^7.12.7",
|
|
110
114
|
"@types/ws": "^8.18.1",
|
|
111
115
|
"autocannon": "^8.0.0",
|
|
112
116
|
"happy-dom": "^20.6.1",
|
|
113
117
|
"pkgroll": "^2.25.2",
|
|
118
|
+
"playwright": "^1.57.0",
|
|
114
119
|
"tsx": "^4.21.0",
|
|
115
|
-
"typescript": "^5.9.3"
|
|
120
|
+
"typescript": "^5.9.3",
|
|
121
|
+
"vitest": "^4.0.17"
|
|
116
122
|
}
|
|
117
123
|
}
|