@flightdev/adapter-bun 0.0.6 → 0.0.7

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 +4 -4
  2. package/package.json +8 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @flight-framework/adapter-bun
1
+ # @flightdev/adapter-bun
2
2
 
3
3
  Bun runtime deployment adapter for Flight Framework. Ultra-fast builds and runtime performance.
4
4
 
@@ -17,7 +17,7 @@ Bun runtime deployment adapter for Flight Framework. Ultra-fast builds and runti
17
17
  ## Installation
18
18
 
19
19
  ```bash
20
- bun add @flight-framework/adapter-bun
20
+ bun add @flightdev/adapter-bun
21
21
  ```
22
22
 
23
23
  ---
@@ -26,8 +26,8 @@ bun add @flight-framework/adapter-bun
26
26
 
27
27
  ```typescript
28
28
  // flight.config.ts
29
- import { defineConfig } from '@flight-framework/core';
30
- import bun from '@flight-framework/adapter-bun';
29
+ import { defineConfig } from '@flightdev/core';
30
+ import bun from '@flightdev/adapter-bun';
31
31
 
32
32
  export default defineConfig({
33
33
  adapter: bun(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flightdev/adapter-bun",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Bun adapter for Flight Framework - ultra-fast Bun runtime",
5
5
  "keywords": [
6
6
  "flight",
@@ -23,7 +23,7 @@
23
23
  "dist"
24
24
  ],
25
25
  "dependencies": {
26
- "@flightdev/core": "0.6.7"
26
+ "@flightdev/core": "0.6.8"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^22.0.0",
@@ -31,6 +31,12 @@
31
31
  "tsup": "^8.0.0",
32
32
  "typescript": "^5.7.0"
33
33
  },
34
+ "homepage": "https://github.com/EliosLT/FlightDev",
35
+ "repository": {
36
+ "url": "https://github.com/EliosLT/FlightDev.git",
37
+ "directory": "packages/adapter-bun",
38
+ "type": "git"
39
+ },
34
40
  "scripts": {
35
41
  "build": "tsup",
36
42
  "dev": "tsup --watch",