@hypersonic-js/complete 0.2.0 → 0.2.1
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/README.md +13 -0
- package/package.json +6 -6
- package/Readme.md +0 -30
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @hypersonic-js/complete
|
|
2
|
+
|
|
3
|
+
The complete Hypersonic.js framework — all production packages in one install
|
|
4
|
+
|
|
5
|
+
📖 **[Full documentation → hypersonic-js.com](https://hypersonic-js.com)**
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
npm install @hypersonic-js/complete
|
|
10
|
+
|
|
11
|
+
## License
|
|
12
|
+
|
|
13
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hypersonic-js/complete",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "The complete Hypersonic.js framework — all packages in one install",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "The complete Hypersonic.js framework — all production packages in one install",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"author": "Joaquim Dalton-Pereira",
|
|
23
23
|
"homepage": "https://hypersonic-js.com",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@hypersonic-js/
|
|
26
|
-
"@hypersonic-js/
|
|
25
|
+
"@hypersonic-js/admin": "0.2.1",
|
|
26
|
+
"@hypersonic-js/core": "0.2.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "25.9.3",
|
|
30
|
-
"@vitest/coverage-v8": "4.1.
|
|
30
|
+
"@vitest/coverage-v8": "4.1.9",
|
|
31
31
|
"typescript": "6.0.3",
|
|
32
|
-
"vitest": "4.1.
|
|
32
|
+
"vitest": "4.1.9"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsc",
|
package/Readme.md
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# @hypersonic-js/complete
|
|
2
|
-
|
|
3
|
-
**Hypersonic.js** — everything in one install. This package re-exports the full public API of every Hypersonic package so you don't have to manage individual package versions.
|
|
4
|
-
|
|
5
|
-
📖 **[hypersonic-js.com](https://hypersonic-js.com)**
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm install @hypersonic-js/complete
|
|
11
|
-
npm install --save-dev prisma @prisma/client
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
## When to use this
|
|
15
|
-
|
|
16
|
-
Use `@hypersonic-js/complete` if you want a single dependency that tracks the full framework. Use the individual packages (e.g. `@hypersonic-js/core`) if you need fine-grained control over which parts of the framework you include.
|
|
17
|
-
|
|
18
|
-
## Quick start
|
|
19
|
-
|
|
20
|
-
```ts
|
|
21
|
-
import { defineConfig, createApp, loadConfig } from '@hypersonic-js/complete'
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
Everything exported by `@hypersonic-js/complete` is identical to the same export from its source package — no wrappers, no overhead.
|
|
25
|
-
|
|
26
|
-
Full documentation at **[hypersonic-js.com](https://hypersonic-js.com)**.
|
|
27
|
-
|
|
28
|
-
## License
|
|
29
|
-
|
|
30
|
-
MIT © [Joaquim Dalton-Pereira](https://github.com/Zesuperaker)
|