@nwire/storage 0.7.0 → 0.7.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 -16
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -40,17 +40,7 @@ defineAction({
40
40
 
41
41
  ## When to use
42
42
 
43
- Any app that handles files (uploads, exports, generated reports). Fits L3 and up.
44
-
45
- ## Standalone use
46
-
47
- For developers using `@nwire/storage` **without the rest of Nwire** — pair it with any TypeScript project, any container, any HTTP framework.
48
-
49
- ```ts
50
- // See the package's main entry (src/) for the standalone surface.
51
- // The exports below work without @nwire/app or @nwire/forge.
52
- import {} from /* ...standalone exports... */ "@nwire/storage";
53
- ```
43
+ Any app that handles files (uploads, exports, generated reports).
54
44
 
55
45
  ## Within nwire-app
56
46
 
@@ -64,8 +54,3 @@ const app = createApp({
64
54
  });
65
55
  // Adapter/plugin wiring happens here when applicable.
66
56
  ```
67
-
68
- ## See also
69
-
70
- - [Architecture sketch §05 — Adapters tier](../../architecture-sketch.html#packages)
71
- - Sibling packages: [@nwire/storage-s3](../nwire-storage-s3), [@nwire/storage-fs](../nwire-storage-fs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nwire/storage",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Nwire — object-storage contract + InMemoryStorage default + storagePlugin. Adapters (S3, filesystem) live in separate packages (@nwire/storage-s3, @nwire/storage-fs).",
5
5
  "keywords": [
6
6
  "adapter",
@@ -10,9 +10,11 @@
10
10
  "s3",
11
11
  "storage"
12
12
  ],
13
+ "license": "MIT",
13
14
  "files": [
14
15
  "dist",
15
- "README.md"
16
+ "README.md",
17
+ "LICENSE"
16
18
  ],
17
19
  "type": "module",
18
20
  "main": "./dist/storage.js",
@@ -27,7 +29,7 @@
27
29
  "access": "public"
28
30
  },
29
31
  "dependencies": {
30
- "@nwire/forge": "0.7.0"
32
+ "@nwire/forge": "0.7.1"
31
33
  },
32
34
  "devDependencies": {
33
35
  "@types/node": "^22.19.9",