-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "@cryptohopper/sdk",
"version": "0.4.0-alpha.2",
"description": "Official Node.js SDK for the Cryptohopper API",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist", "README.md", "LICENSE", "CHANGELOG.md"],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"keywords": ["cryptohopper", "sdk", "trading", "crypto", "bot", "api-client"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cryptohopper/cryptohopper-node-sdk.git"
},
"homepage": "https://www.cryptohopper.com",
"bugs": "https://github.com/cryptohopper/cryptohopper-node-sdk/issues",
"engines": { "node": ">=20" },
"devDependencies": {
"@types/node": "^25",
"tsup": "^8",
"typescript": "^6.0.3",
"vitest": "^4"
}
}