@hypersonic-js/complete 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/Readme.md +6 -6
  2. package/package.json +8 -2
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 © [Zesuperaker](https://github.com/Zesuperaker)
30
+ MIT © [Joaquim Dalton-Pereira](https://github.com/Zesuperaker)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypersonic-js/complete",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "The complete Hypersonic.js framework — all packages in one install",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -14,9 +14,15 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/hypersonic-js/hypersonic-js"
20
+ },
17
21
  "license": "MIT",
22
+ "author": "Joaquim Dalton-Pereira",
23
+ "homepage": "https://hypersonic-js.com",
18
24
  "dependencies": {
19
- "@hypersonic-js/core": "0.1.0"
25
+ "@hypersonic-js/core": "0.1.2"
20
26
  },
21
27
  "devDependencies": {
22
28
  "@types/node": "25.9.1",