omnipin 1.7.2 → 1.8.0

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.
@@ -0,0 +1,24 @@
1
+ function __webpack_require__(moduleId) {
2
+ var cachedModule = __webpack_module_cache__[moduleId];
3
+ if (void 0 !== cachedModule) return cachedModule.exports;
4
+ var module = __webpack_module_cache__[moduleId] = {
5
+ exports: {}
6
+ };
7
+ return __webpack_modules__[moduleId](module, module.exports, __webpack_require__), module.exports;
8
+ }
9
+ var __webpack_modules__ = {}, __webpack_module_cache__ = {};
10
+ __webpack_require__.m = __webpack_modules__, __webpack_require__.add = function(modules) {
11
+ Object.assign(__webpack_require__.m, modules);
12
+ }, __webpack_require__.d = (exports, definition)=>{
13
+ for(var key in definition)__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key) && Object.defineProperty(exports, key, {
14
+ enumerable: !0,
15
+ get: definition[key]
16
+ });
17
+ }, __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop), __webpack_require__.r = (exports)=>{
18
+ "u" > typeof Symbol && Symbol.toStringTag && Object.defineProperty(exports, Symbol.toStringTag, {
19
+ value: 'Module'
20
+ }), Object.defineProperty(exports, '__esModule', {
21
+ value: !0
22
+ });
23
+ };
24
+ export { __webpack_require__ };
package/package.json CHANGED
@@ -1,44 +1,42 @@
1
1
  {
2
2
  "name": "omnipin",
3
- "version": "1.7.2",
3
+ "version": "1.8.0",
4
4
  "author": "v1rtl <hi@v1rtl.site>",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/omnipin/omnipin.git"
8
8
  },
9
9
  "devDependencies": {
10
- "@biomejs/biome": "^2.2.5",
10
+ "@biomejs/biome": "^2.3.10",
11
11
  "@ipld/car": "^5.4.2",
12
- "@ipld/dag-cbor": "^9.2.5",
13
12
  "@ipld/dag-ucan": "^3.4.5",
13
+ "@rslib/core": "^0.19.1",
14
14
  "@size-limit/file": "^11.2.0",
15
15
  "@stauro/filebase-upload": "npm:@jsr/stauro__filebase-upload",
16
- "@storacha/blob-index": "^1.2.4",
17
- "@storacha/filecoin-client": "^1.0.15",
18
- "@types/bun": "^1.2.20",
16
+ "@storacha/capabilities": "^1.12.0",
17
+ "@types/bun": "^1.3.5",
19
18
  "@types/varint": "^6.0.3",
20
19
  "@ucanto/client": "^9.0.2",
21
20
  "@ucanto/core": "^10.4.6",
22
21
  "@ucanto/principal": "^9.0.3",
23
22
  "@ucanto/transport": "^9.2.1",
24
23
  "@web3-storage/data-segment": "^5.3.0",
25
- "ascii-bar": "^1.0.3",
26
- "blockstore-core": "^6",
24
+ "cborg": "^4.3.2",
27
25
  "esbuild": "^0.27.2",
28
26
  "ipfs-unixfs": "^12.0.0",
29
27
  "ipfs-unixfs-importer": "^16.0.1",
30
- "multiformats": "^13.4.0",
28
+ "multiformats": "13.4.2",
31
29
  "nanotar": "^0.2.0",
32
- "ox": "^0.10.5",
30
+ "ox": "^0.11.3",
33
31
  "size-limit": "^11.2.0",
34
32
  "spektr": "^0.2.0",
35
- "tinyglobby": "^0.2.14",
36
- "typescript": "^5.9.2",
33
+ "tinyglobby": "^0.2.15",
34
+ "typescript": "^5.9.3",
37
35
  "varint": "^6.0.0",
38
36
  "vitepress": "^1.6.4"
39
37
  },
40
38
  "bin": {
41
- "omnipin": "dist/cli.js"
39
+ "omnipin": "dist/index.js"
42
40
  },
43
41
  "description": "🌸 Self-custodial decentralized deployments",
44
42
  "engineStrict": true,
@@ -56,14 +54,16 @@
56
54
  "cli"
57
55
  ],
58
56
  "license": "MIT",
57
+ "overrides": {
58
+ "@multiformats/murmur3": "npm:@omnipin/multiformats-murmur3"
59
+ },
59
60
  "release": {
60
61
  "branches": [
61
62
  "main"
62
63
  ]
63
64
  },
64
65
  "scripts": {
65
- "build": "bun build src/cli.ts --outfile dist/out.js --target node --bundle",
66
- "postbuild": "esbuild dist/out.js --format=esm --tree-shaking --outfile=dist/cli.js && rm dist/out.js && chmod +x ./dist/cli.js",
66
+ "build": "rslib",
67
67
  "prepublishOnly": "bun run build && bun size-limit",
68
68
  "check": "biome check",
69
69
  "types": "tsc --noEmit",
@@ -71,8 +71,8 @@
71
71
  },
72
72
  "size-limit": [
73
73
  {
74
- "path": "dist/cli.js",
75
- "limit": "1MB",
74
+ "path": "dist/index.js",
75
+ "limit": "1.5MB",
76
76
  "brotli": false
77
77
  }
78
78
  ],