@ton-pay/ui-react 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,74 @@
1
+ {
2
+ "name": "@ton-pay/ui-react",
3
+ "version": "0.1.0",
4
+ "description": "React components and hooks for TonPay SDK",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "scripts": {
16
+ "build": "tsup",
17
+ "dev": "tsup --watch",
18
+ "clean": "rm -rf dist",
19
+ "typecheck": "tsc --noEmit",
20
+ "test": "bun test",
21
+ "test:button-react": "cd test && bun install && bun run dev",
22
+ "prepublishOnly": "npm run clean && npm run build"
23
+ },
24
+ "tsup": {
25
+ "entry": [
26
+ "src/index.ts"
27
+ ],
28
+ "format": [
29
+ "cjs",
30
+ "esm"
31
+ ],
32
+ "dts": true,
33
+ "splitting": true,
34
+ "sourcemap": true,
35
+ "clean": true,
36
+ "external": [
37
+ "react",
38
+ "react-dom"
39
+ ]
40
+ },
41
+ "peerDependencies": {
42
+ "react": ">=18.0.0",
43
+ "@tonconnect/ui-react": "^2.2.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/react": "^18.0.0"
47
+ },
48
+ "keywords": [
49
+ "ton",
50
+ "tonpay",
51
+ "react",
52
+ "ui",
53
+ "components",
54
+ "hooks"
55
+ ],
56
+ "author": "RSquad Blockchain Lab",
57
+ "license": "Apache-2.0",
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "https://github.com/RSquad/ton-pay.git",
61
+ "directory": "packages/ui-react"
62
+ },
63
+ "homepage": "https://docs.tonpay.tech",
64
+ "bugs": {
65
+ "url": "https://github.com/RSquad/ton-pay/issues"
66
+ },
67
+ "publishConfig": {
68
+ "access": "public"
69
+ },
70
+ "files": [
71
+ "dist",
72
+ "README.md"
73
+ ]
74
+ }