-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.21 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ton-pay-sdk",
"private": true,
"version": "0.3.0",
"description": "TON Pay SDK - modular payment solutions for TON blockchain",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"workspaces": [
"packages/*"
],
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"scripts": {
"build": "bun run build:packages && tsup",
"build:packages": "cd packages/api && bun run build && cd ../ui-react && bun i && bun run build && cd ../ui && bun i && bun run build && cd ../..",
"dev": "tsup --watch",
"clean": "rm -rf packages/*/dist && rm -rf dist",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "echo 'No lint configured'",
"docs:dev": "mintlify dev --no-browser --port 3333",
"test:button-react": "cd packages/ui-react && bun run test:button-react",
"publish:api": "npm publish --workspace=packages/api",
"publish:ui": "npm publish --workspace=packages/ui",
"publish:ui-react": "npm publish --workspace=packages/ui-react",
"publish:all": "npm publish --workspaces"
},
"tsup": {
"entry": [
"index.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"splitting": true,
"sourcemap": true,
"clean": true
},
"dependencies": {},
"devDependencies": {
"@types/node": "^24.7.1",
"node-plantuml": "^0.9.0",
"prettier": "3.7.4",
"tsup": "^8.5.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@tanstack/react-query": "^5.90.2",
"@ton/core": "^0.61.0",
"@ton/crypto": "^3.3.0",
"@tonconnect/ui-react": "^2.2.0",
"react": "^18.0.0",
"toncenter-v3-api": "^2.0.3"
},
"keywords": [
"ton",
"tonpay",
"blockchain",
"payment",
"sdk"
],
"author": "RSquad Blockchain Lab",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/RSquad/ton-pay.git"
},
"homepage": "https://docs.ton.org/ecosystem/ton-pay",
"bugs": {
"url": "https://github.com/RSquad/ton-pay/issues"
},
"publishConfig": {
"access": "public"
}
}