-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 952 Bytes
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
{
"name": "stx-tip-jar-sdk",
"version": "0.1.1",
"description": "TypeScript SDK for sending STX tips and fetching balances on the Stacks blockchain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:dev": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/uniquebeing-base-eth/stackstipjar-sdk"
},
"homepage": "https://github.com/uniquebeing-base-eth/stackstipjar-sdk#readme",
"bugs": {
"url": "https://github.com/uniquebeing-base-eth/stackstipjar-sdk/issues"
},
"keywords": [
"stacks",
"stx",
"tip",
"tipping",
"web3",
"sdk",
"blockchain"
],
"author": "uniquebeing-base-eth",
"license": "MIT",
"dependencies": {
"@stacks/network": "^6.13.0",
"@stacks/transactions": "^6.13.0"
},
"devDependencies": {
"typescript": "^5.4.5"
}
}