@chipi-stack/chipi-expo 8.0.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/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @chipi-stack/chipi-expo
2
+
3
+ Chipi SDK for React Native and Expo applications.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @chipi-stack/chipi-expo
9
+ ```
10
+
11
+ or
12
+
13
+ ```bash
14
+ yarn add @chipi-stack/chipi-expo
15
+ ```
16
+
17
+ or
18
+
19
+ ```bash
20
+ pnpm add @chipi-stack/chipi-expo
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ Please go to the [documentation](https://docs.chipipay.com) for more information.
@@ -0,0 +1,2 @@
1
+ export * from '@chipi-stack/chipi-react';
2
+ export * from '@chipi-stack/types';
@@ -0,0 +1,2 @@
1
+ export * from '@chipi-stack/chipi-react';
2
+ export * from '@chipi-stack/types';
package/dist/index.js ADDED
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+
3
+ var chipiReact = require('@chipi-stack/chipi-react');
4
+
5
+
6
+
7
+ Object.keys(chipiReact).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return chipiReact[k]; }
11
+ });
12
+ });
13
+ //# sourceMappingURL=index.js.map
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ export * from '@chipi-stack/chipi-react';
2
+ //# sourceMappingURL=index.mjs.map
3
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs","sourcesContent":[]}
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@chipi-stack/chipi-expo",
3
+ "version": "8.0.0",
4
+ "description": "Chipi SDK for React Native and Expo applications",
5
+ "keywords": [
6
+ "chipi",
7
+ "expo",
8
+ "react-native",
9
+ "react",
10
+ "blockchain",
11
+ "starknet",
12
+ "wallet",
13
+ "transactions"
14
+ ],
15
+ "homepage": "https://github.com/chipi-pay/chipi-sdk",
16
+ "bugs": {
17
+ "url": "https://github.com/chipi-pay/chipi-sdk/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/chipi-pay/chipi-sdk.git",
22
+ "directory": "sdks/chipi-expo"
23
+ },
24
+ "license": "MIT",
25
+ "author": "Chipi Pay",
26
+ "exports": {
27
+ ".": {
28
+ "import": {
29
+ "types": "./dist/index.d.mts",
30
+ "default": "./dist/index.mjs"
31
+ },
32
+ "require": {
33
+ "types": "./dist/index.d.ts",
34
+ "default": "./dist/index.js"
35
+ }
36
+ },
37
+ "./package.json": "./package.json"
38
+ },
39
+ "main": "./dist/index.js",
40
+ "files": [
41
+ "dist"
42
+ ],
43
+ "devDependencies": {
44
+ "@types/react": "^18.3.0",
45
+ "@types/react-dom": "^18.3.0",
46
+ "eslint": "^9.33.0",
47
+ "prettier": "^3.0.0",
48
+ "react": "^18.3.0",
49
+ "react-dom": "^18.3.0",
50
+ "rimraf": "^5.0.0",
51
+ "tsup": "^8.3.6",
52
+ "typescript": "^5.7.3"
53
+ },
54
+ "dependencies": {
55
+ "@chipi-stack/types": "^8.0.0",
56
+ "@chipi-stack/chipi-react": "^8.0.0"
57
+ },
58
+ "peerDependencies": {
59
+ "react": ">=16.8.0",
60
+ "react-dom": ">=16.8.0"
61
+ },
62
+ "engines": {
63
+ "node": ">=18.17.0"
64
+ },
65
+ "publishConfig": {
66
+ "access": "public"
67
+ },
68
+ "scripts": {
69
+ "build": "tsup",
70
+ "build:declarations": "tsc -p tsconfig.declarations.json",
71
+ "clean": "rimraf ./dist",
72
+ "dev": "tsup --watch",
73
+ "dev:publish": "pnpm dev --env.publish",
74
+ "format": "prettier --write src/**/*.{ts,tsx}",
75
+ "format:check": "prettier --check src/**/*.{ts,tsx}",
76
+ "lint": "eslint src",
77
+ "typecheck": "tsc --noEmit"
78
+ }
79
+ }