@hypersonic-js/complete 0.1.2 → 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 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/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from '@hypersonic-js/core';
2
+ export * from '@hypersonic-js/admin';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -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
@@ -1,2 +1,3 @@
1
1
  export * from '@hypersonic-js/core';
2
+ export * from '@hypersonic-js/admin';
2
3
  //# sourceMappingURL=index.js.map
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,7 +1,7 @@
1
1
  {
2
2
  "name": "@hypersonic-js/complete",
3
- "version": "0.1.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,13 +22,14 @@
22
22
  "author": "Joaquim Dalton-Pereira",
23
23
  "homepage": "https://hypersonic-js.com",
24
24
  "dependencies": {
25
- "@hypersonic-js/core": "0.1.2"
25
+ "@hypersonic-js/admin": "0.2.1",
26
+ "@hypersonic-js/core": "0.2.1"
26
27
  },
27
28
  "devDependencies": {
28
- "@types/node": "25.9.1",
29
- "@vitest/coverage-v8": "4.1.7",
29
+ "@types/node": "25.9.3",
30
+ "@vitest/coverage-v8": "4.1.9",
30
31
  "typescript": "6.0.3",
31
- "vitest": "4.1.7"
32
+ "vitest": "4.1.9"
32
33
  },
33
34
  "scripts": {
34
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)