blaizejs 0.1.0 → 0.2.2
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/LICENSE +21 -0
- package/README.md +746 -198
- package/dist/index.cjs +1629 -1355
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +688 -23
- package/dist/index.d.ts +688 -23
- package/dist/index.js +1629 -1355
- package/dist/index.js.map +1 -1
- package/package.json +24 -25
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blaizejs",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "A blazing-fast,
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "A blazing-fast, TypeScript-first Node.js framework with HTTP/2 support, file-based routing, powerful middleware system, and end-to-end type safety for building modern APIs.",
|
|
5
5
|
"author": "J.Lea-Jones <jason@careymarcel.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/jleajones/blaize/issues"
|
|
13
13
|
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
14
17
|
"type": "module",
|
|
15
18
|
"main": "./dist/index.js",
|
|
16
19
|
"types": "./dist/index.d.ts",
|
|
@@ -24,37 +27,22 @@
|
|
|
24
27
|
"files": [
|
|
25
28
|
"dist"
|
|
26
29
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"dev": "NODE_ENV=development tsx --watch src/examples/basic.ts",
|
|
29
|
-
"build": "tsup",
|
|
30
|
-
"build:watch": "tsup --watch",
|
|
31
|
-
"type-check": "tsc --noEmit",
|
|
32
|
-
"test": "vitest run --typecheck",
|
|
33
|
-
"test:watch": "vitest",
|
|
34
|
-
"test:coverage": "vitest run --coverage",
|
|
35
|
-
"lint": "eslint .",
|
|
36
|
-
"clean": "rimraf dist"
|
|
37
|
-
},
|
|
38
30
|
"dependencies": {
|
|
39
31
|
"chokidar": "^4.0.3",
|
|
40
32
|
"selfsigned": "^2.4.1",
|
|
41
33
|
"zod": "^3.24.4"
|
|
42
34
|
},
|
|
43
35
|
"devDependencies": {
|
|
44
|
-
"@blaizejs/eslint-config": "workspace:*",
|
|
45
|
-
"@blaizejs/testing-utils": "workspace:*",
|
|
46
|
-
"@blaizejs/tsconfig": "workspace:*",
|
|
47
|
-
"@blaizejs/tsup-config": "workspace:*",
|
|
48
|
-
"@blaizejs/types": "workspace:*",
|
|
49
|
-
"@blaizejs/vitest-config": "workspace:*",
|
|
50
36
|
"@types/node": "^22.15.17",
|
|
51
37
|
"@types/selfsigned": "^2.1.0",
|
|
52
38
|
"@vitest/coverage-v8": "^3.1.3",
|
|
53
39
|
"tsx": "^4.19.4",
|
|
54
|
-
"vitest": "^3.1.3"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
40
|
+
"vitest": "^3.1.3",
|
|
41
|
+
"@blaizejs/eslint-config": "0.1.0",
|
|
42
|
+
"@blaizejs/testing-utils": "0.1.3",
|
|
43
|
+
"@blaizejs/tsconfig": "0.1.0",
|
|
44
|
+
"@blaizejs/tsup-config": "0.1.0",
|
|
45
|
+
"@blaizejs/vitest-config": "0.1.0"
|
|
58
46
|
},
|
|
59
47
|
"keywords": [
|
|
60
48
|
"nodejs",
|
|
@@ -68,5 +56,16 @@
|
|
|
68
56
|
"plugins",
|
|
69
57
|
"type-safe"
|
|
70
58
|
],
|
|
71
|
-
"license": "MIT"
|
|
72
|
-
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"scripts": {
|
|
61
|
+
"dev": "NODE_ENV=development tsx --watch src/examples/basic.ts",
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"build:watch": "tsup --watch",
|
|
64
|
+
"type-check": "tsc --noEmit",
|
|
65
|
+
"test": "vitest run --typecheck",
|
|
66
|
+
"test:watch": "vitest",
|
|
67
|
+
"test:coverage": "vitest run --coverage",
|
|
68
|
+
"lint": "eslint .",
|
|
69
|
+
"clean": "rimraf dist"
|
|
70
|
+
}
|
|
71
|
+
}
|