@relayprotocol/relay-ton-wallet-adapter 2.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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@relayprotocol/relay-ton-wallet-adapter",
3
+ "version": "2.0.0",
4
+ "description": "A TON wallet adapter for use in @relayprotocol/relay-sdk",
5
+ "type": "module",
6
+ "source": "./src/index.ts",
7
+ "main": "./_cjs/src/index.js",
8
+ "module": "./_esm/src/index.js",
9
+ "types": "./_types/src/index.d.ts",
10
+ "typings": "./_types/src/index.d.ts",
11
+ "sideEffects": false,
12
+ "files": [
13
+ "./_cjs",
14
+ "./_esm",
15
+ "./_types"
16
+ ],
17
+ "exports": {
18
+ "types": "./_types/src/index.d.ts",
19
+ "import": "./_esm/src/index.js",
20
+ "require": "./_cjs/src/index.js"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/relayprotocol/relay-kit.git",
25
+ "directory": "packages/relay-ton-wallet-adapter"
26
+ },
27
+ "keywords": [
28
+ "ton",
29
+ "ton-adapter",
30
+ "tonvm",
31
+ "reservoir",
32
+ "relay",
33
+ "adapter",
34
+ "relay-ton-wallet-adapter",
35
+ "reservoir-ton-wallet-adapter",
36
+ "relay",
37
+ "protocol",
38
+ "sdk-adapter"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "devDependencies": {
44
+ "rimraf": "^5.0.5"
45
+ },
46
+ "dependencies": {
47
+ "@types/node": "^22.5.4"
48
+ },
49
+ "peerDependencies": {
50
+ "@ton/core": "^0.61.0",
51
+ "@ton/ton": "^15.1.0",
52
+ "viem": ">=2.26.0",
53
+ "@relayprotocol/relay-sdk": "6.1.0"
54
+ },
55
+ "scripts": {
56
+ "build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
57
+ "build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./_cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./_cjs/package.json",
58
+ "build:esm": "tsc --project ./tsconfig.build.json --module es2015 --outDir ./_esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./_esm/package.json",
59
+ "build:types": "tsc --project ./tsconfig.build.json --module esnext --outDir ./_types --declarationDir ./_types --emitDeclarationOnly --declaration --declarationMap",
60
+ "dev": "concurrently \"pnpm run clean\" \"pnpm run dev:esm\" \"pnpm run dev:types\"",
61
+ "dev:esm": "tsc --watch --project ./tsconfig.build.json --module es2015 --outDir ./_esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./_esm/package.json",
62
+ "dev:types": "tsc --watch --project ./tsconfig.build.json --module esnext --outDir ./_types --declarationDir ./_types --emitDeclarationOnly --declaration --declarationMap",
63
+ "clean": "rimraf ./_esm ./_cjs ./_types",
64
+ "typecheck": "tsc --noEmit"
65
+ }
66
+ }