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