-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 896 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 896 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
{
"name": "@messari/sdk",
"version": "0.0.4",
"private": false,
"description": "Messari SDK provides a type-safe, intuitive interface for accessing Messari's suite of crypto data and AI APIs.",
"author": "Messari Engineering",
"keywords": ["messari", "crypto", "ai", "agent", "bitcoin", "ethereum"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": ["dist", "README.md"],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"test:run": "vitest run",
"test:watch": "vitest",
"dev": "tsx"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.13.5",
"rimraf": "^5.0.10",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"license": "MIT"
}