-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 926 Bytes
/
package.json
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
{
"name": "cryptocloud-sdk",
"version": "1.0.2",
"description": "Full unofficial cryptocloud.plus API SDK with typescript support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"homepage": "https://github.com/Alexandre-Chapelle/cryptocloud-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/Alexandre-Chapelle/cryptocloud-sdk.git"
},
"keywords": [
"sdk",
"api",
"crypto",
"library",
"typescript",
"javascript",
"cryptocloud",
"cryptocloud.plus"
],
"author": {
"name": "Alexandre Chapelle"
},
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}