@pezkuwi/rpc-augment 16.5.5

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,2 @@
1
+ import './augment/index.js';
2
+ export { packageInfo } from './packageInfo.js';
@@ -0,0 +1,2 @@
1
+ import './packageDetect.js';
2
+ export * from './bundle.js';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ export declare const packageInfo: {
2
+ name: string;
3
+ path: string;
4
+ type: string;
5
+ version: string;
6
+ };
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "author": "Jaco Greeff <jacogr@gmail.com>",
3
+ "bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
4
+ "description": "RPC generated augmentation",
5
+ "engines": {
6
+ "node": ">=18"
7
+ },
8
+ "homepage": "https://github.com/pezkuwichain/pezkuwi-api/tree/master/packages/rpc-augment#readme",
9
+ "license": "Apache-2.0",
10
+ "name": "@pezkuwi/rpc-augment",
11
+ "repository": {
12
+ "directory": "packages/rpc-augment",
13
+ "type": "git",
14
+ "url": "https://github.com/pezkuwichain/pezkuwi-api.git"
15
+ },
16
+ "sideEffects": [
17
+ "./packageDetect.js",
18
+ "./packageDetect.cjs"
19
+ ],
20
+ "type": "module",
21
+ "version": "16.5.5",
22
+ "main": "index.js",
23
+ "dependencies": {
24
+ "@pezkuwi/rpc-core": "16.5.5",
25
+ "@pezkuwi/types": "16.5.5",
26
+ "@pezkuwi/types-codec": "16.5.5",
27
+ "@pezkuwi/util": "14.0.5",
28
+ "tslib": "^2.8.1"
29
+ }
30
+ }
@@ -0,0 +1,4 @@
1
+ // Copyright 2017-2025 @polkadot/rpc-augment authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import './jsonrpc.js';