@hauska-sdk/adapters-ipfs-pinata 0.1.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.
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@hauska-sdk/adapters-ipfs-pinata",
3
+ "version": "0.1.0",
4
+ "description": "CNS Protocol Pinata IPFS Adapter",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "clean": "rimraf dist",
18
+ "test": "echo \"Tests will be added in testing framework setup\"",
19
+ "type-check": "tsc --noEmit"
20
+ },
21
+ "dependencies": {},
22
+ "devDependencies": {
23
+ "typescript": "^5.3.3",
24
+ "rimraf": "^5.0.5"
25
+ },
26
+ "keywords": [
27
+ "cns-protocol",
28
+ "ipfs",
29
+ "pinata",
30
+ "adapter"
31
+ ],
32
+ "author": "Hauska SDK Team",
33
+ "license": "MIT",
34
+ "publishConfig": {
35
+ "access": "public",
36
+ "registry": "https://registry.npmjs.org"
37
+ }
38
+ }
package/src/index.ts ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * @hauska-sdk/adapters-ipfs-pinata
3
+ * CNS Protocol Pinata IPFS Adapter
4
+ */
5
+
6
+ // This will be implemented in Phase 3
7
+ export {};
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "./dist",
5
+ "rootDir": "./src",
6
+ "paths": {}
7
+ },
8
+ "include": ["src/**/*"],
9
+ "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
10
+ }