vafast 0.1.8 → 0.1.10
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/dist/index.d.ts +459 -0
- package/dist/index.js +1346 -55620
- package/package.json +3 -2
- package/dist/main.js +0 -19758
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vafast",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "专为Bun构建的极简结构化Web框架。Go风格,函数优先。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"types": "./dist/index.d.ts",
|
|
25
25
|
"main": "./dist/index.js",
|
|
26
26
|
"scripts": {
|
|
27
|
-
"build": "
|
|
27
|
+
"build": "tsdown",
|
|
28
28
|
"dev": "bun --watch index.ts",
|
|
29
29
|
"start": "bun run dist/index.js",
|
|
30
30
|
"test": "vitest",
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"bun-types": "^1.2.20",
|
|
82
82
|
"jsdom": "^26.1.0",
|
|
83
83
|
"rimraf": "^6.0.1",
|
|
84
|
+
"tsdown": "^0.14.1",
|
|
84
85
|
"typescript": "^5.9.2",
|
|
85
86
|
"vitest": "^3.2.4"
|
|
86
87
|
},
|