-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.7 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
{
"name": "@solana-tracker/data-api",
"version": "0.2.3",
"description": "Official Solana Tracker Data API client for accessing Solana Data",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"prepublishOnly": "npm run build"
},
"keywords": [
"solana",
"blockchain",
"data-api",
"crypto",
"solanatracker",
"tokens",
"market-data",
"pumpfun",
"raydium"
],
"author": "Solana Tracker <contact@solana-tracker.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/solanatracker/data-api-sdk.git"
},
"bugs": {
"url": "https://github.com/solanatracker/data-api-sdk/issues"
},
"homepage": "https://www.solanatracker.io/data-api",
"dependencies": {
"node-fetch": "^3.3.2"
},
"optionalDependencies": {
"ws": "^8.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.4.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}