@daloyjs/core 0.7.1 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +6 -9
  2. package/package.json +23 -22
package/README.md CHANGED
@@ -1,18 +1,15 @@
1
1
  # DaloyJS
2
2
 
3
+ [![CI](https://github.com/daloyjs/daloy/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/daloyjs/daloy/actions/workflows/ci.yml)
4
+ [![CodeQL](https://github.com/daloyjs/daloy/actions/workflows/codeql.yml/badge.svg?branch=main)](https://github.com/daloyjs/daloy/actions/workflows/codeql.yml)
5
+ [![Publish](https://github.com/daloyjs/daloy/actions/workflows/release.yml/badge.svg)](https://github.com/daloyjs/daloy/actions/workflows/release.yml)
6
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/daloyjs/daloy/badge)](https://securityscorecards.dev/viewer/?uri=github.com/daloyjs/daloy)
7
+ [![Zizmor](https://github.com/daloyjs/daloy/actions/workflows/zizmor.yml/badge.svg?branch=main)](https://github.com/daloyjs/daloy/actions/workflows/zizmor.yml)
8
+
3
9
  > A **runtime-portable TypeScript web framework** with built-in **contract-first routing**, **validation**, **OpenAPI (Hey API)**, **typed client generation**, **large-scale maintainability**, and **security-focused runtime plus supply-chain posture**.
4
10
 
5
11
  DaloyJS is maintained in the GitHub organization at <https://github.com/daloyjs>; the canonical framework repository is <https://github.com/daloyjs/daloy>.
6
12
 
7
- 📚 **Documentation site:** <https://daloyjs.dev> — a Next.js 16 + shadcn/ui + Tailwind v4 site with the landing page, getting-started guide, ORM integration guides, tutorials, security docs, and full API reference. Run it with:
8
-
9
- ```zsh
10
- cd website
11
- pnpm install
12
- pnpm dev # http://localhost:3000
13
- pnpm build # static prerender of every docs route
14
- ```
15
-
16
13
  ---
17
14
 
18
15
  DaloyJS exists to be the framework you'd build if you took the best ideas from each modern stack:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daloyjs/core",
3
- "version": "0.7.1",
3
+ "version": "0.7.4",
4
4
  "description": "DaloyJS is a runtime-portable, contract-first TypeScript web framework with built-in OpenAPI (Hey API), typed client generation, large-scale maintainability, and security-first defaults. Hono-grade portability, Elysia-grade DX, FastAPI-grade docs, Fastify-grade ops — distributed via pnpm.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -15,6 +15,22 @@
15
15
  "url": "https://github.com/daloyjs/daloy/issues"
16
16
  },
17
17
  "author": "DaloyJS",
18
+ "license": "MIT",
19
+ "keywords": [
20
+ "framework",
21
+ "http",
22
+ "openapi",
23
+ "hey-api",
24
+ "contract-first",
25
+ "typescript",
26
+ "hono",
27
+ "elysia",
28
+ "fastify",
29
+ "fastapi",
30
+ "standard-schema",
31
+ "security",
32
+ "pnpm"
33
+ ],
18
34
  "main": "./dist/index.js",
19
35
  "types": "./dist/index.d.ts",
20
36
  "bin": {
@@ -90,27 +106,6 @@
90
106
  "import": "./dist/session.js"
91
107
  }
92
108
  },
93
- "files": [
94
- "dist",
95
- "bin",
96
- "README.md"
97
- ],
98
- "keywords": [
99
- "framework",
100
- "http",
101
- "openapi",
102
- "hey-api",
103
- "contract-first",
104
- "typescript",
105
- "hono",
106
- "elysia",
107
- "fastify",
108
- "fastapi",
109
- "standard-schema",
110
- "security",
111
- "pnpm"
112
- ],
113
- "license": "MIT",
114
109
  "devDependencies": {
115
110
  "@hey-api/openapi-ts": "^0.97.1",
116
111
  "@types/node": "^25.7.0",
@@ -119,6 +114,12 @@
119
114
  "typescript": "^6.0.3",
120
115
  "zod": "^4.4.3"
121
116
  },
117
+ "files": [
118
+ "dist",
119
+ "bin",
120
+ "README.md"
121
+ ],
122
+ "dependencies": {},
122
123
  "scripts": {
123
124
  "build": "tsc -p tsconfig.json",
124
125
  "dev": "tsc -w -p tsconfig.json",