vafast 0.3.9 → 0.3.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/package.json +3 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vafast",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"description": "极简结构化Web框架,支持 Bun 和 Node.js。Go风格,函数优先。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -34,28 +34,10 @@
|
|
|
34
34
|
"types": "./dist/index.d.ts",
|
|
35
35
|
"main": "./dist/index.js",
|
|
36
36
|
"scripts": {
|
|
37
|
-
"clean": "rimraf dist",
|
|
38
37
|
"build": "tsup",
|
|
39
|
-
"dev": "
|
|
40
|
-
"start": "bun run dist/index.js",
|
|
38
|
+
"dev": "npx tsx watch example/index.ts",
|
|
41
39
|
"test": "vitest run",
|
|
42
|
-
"
|
|
43
|
-
"test:watch": "vitest",
|
|
44
|
-
"test:unit": "vitest run tests/unit/",
|
|
45
|
-
"test:integration": "vitest run tests/integration/",
|
|
46
|
-
"test:coverage": "vitest run --coverage",
|
|
47
|
-
"test:ui": "vitest --ui",
|
|
48
|
-
"test:types": "tsc --noEmit",
|
|
49
|
-
"benchmark": "bun run benchmarks/micro/router.bench.ts",
|
|
50
|
-
"lint": "eslint src tests benchmarks",
|
|
51
|
-
"lint:fix": "eslint src tests benchmarks --fix",
|
|
52
|
-
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"benchmarks/**/*.ts\"",
|
|
53
|
-
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"benchmarks/**/*.ts\"",
|
|
54
|
-
"type-check": "tsc --noEmit",
|
|
55
|
-
"prepublishOnly": "npm run build && npm run test",
|
|
56
|
-
"release:patch": "npm version patch && npm run build && npm run test && npm publish --access=public && git push && git push --tags",
|
|
57
|
-
"release:minor": "npm version minor && npm run build && npm run test && npm publish --access=public && git push && git push --tags",
|
|
58
|
-
"release:major": "npm version major && npm run build && npm run test && npm publish --access=public && git push && git push --tags"
|
|
40
|
+
"release": "npm run build && npm run test && npx bumpp && npm publish --access=public"
|
|
59
41
|
},
|
|
60
42
|
"keywords": [
|
|
61
43
|
"bun",
|