This repository was archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "@tiplink/api",
"version": "0.1.6-beta1",
"description": "Api for creating and sending TipLinks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:include-onchain-tests": "ONCHAIN_TESTS=true jest",
"build": "tsc",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"author": "Aashiq Dheeraj",
"license": "LicenseRef-LICENSE",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@solana/spl-token": "^0.3.10",
"@solana/web3.js": "^1.48.0",
"bs58": "^5.0.0",
"libsodium": "^0.7.11",
"libsodium-wrappers-sumo": "^0.7.11",
"nanoid": "^3.3.6",
"sodium-plus": "^0.9.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@types/sodium-native": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"bip39": "^3.1.0",
"dotenv": "^16.3.1",
"@typescript-eslint/typescript-estree": "^6.18.1",
"eslint": "^8.19.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/TipLink/tiplink-api.git"
},
"keywords": [
"crypto",
"solana",
"tiplink",
"wallet",
"airdrop"
],
"homepage": "https://docs.tiplink.io"
}