@datrix/api 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -11,7 +11,7 @@ pnpm add @datrix/api
11
11
  ## Setup
12
12
 
13
13
  ```typescript
14
- import { defineConfig } from "datrix-core"
14
+ import { defineConfig } from "@datrix/core"
15
15
  import { ApiPlugin } from "@datrix/api"
16
16
 
17
17
  export default defineConfig(() => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datrix/api",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "HTTP request handling, query parsing, and response serialization for Datrix framework",
5
5
  "author": "Datrix Contributors",
6
6
  "license": "MIT",
@@ -43,12 +43,12 @@
43
43
  "access": "public"
44
44
  },
45
45
  "peerDependencies": {
46
- "@datrix/core": "^0.1.0"
46
+ "@datrix/core": "^0.1.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "tsup": "^8.0.2",
50
50
  "typescript": "^5.3.3",
51
- "@datrix/core": "0.1.0"
51
+ "@datrix/core": "0.1.1"
52
52
  },
53
53
  "scripts": {
54
54
  "build": "tsup",