forked from qweme32/cryptomus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 KB
/
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": "@ignaigna/cryptomus",
"version": "0.3.0",
"description": "Node wrapper for cryptomus api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "node lib/index.js",
"build": "tsc",
"dev": "ts-node-dev --respawn src/index.ts",
"docs": "typedoc",
"test": "jest",
"lint": "biome lint",
"format": "biome format"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ignaigna/cryptomus.git"
},
"keywords": ["cryptomus", "api", "crypto", "payment"],
"author": "Qweme Dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/ignainga/cryptomus/issues"
},
"homepage": "https://github.com/ignaigna/cryptomus#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@mxssfd/typedoc-theme": "^1.1.7",
"@types/jest": "^29.5.14",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.27.4",
"typedoc-material-theme": "^1.2.0",
"typescript": "^5.7.2"
},
"dependencies": {
"uuid": "^11.0.3"
}
}