-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
44
45
{
"name": "@qweme32/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"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/qweme32/cryptomus.git"
},
"keywords": [
"cryptomus",
"api",
"crypto",
"payment"
],
"author": "Qweme Dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/qweme32/cryptomus/issues"
},
"homepage": "https://github.com/qweme32/cryptomus#readme",
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.3",
"@types/jest": "^29.5.4",
"@types/uuid": "^9.0.3",
"dotenv": "^16.3.1",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.5.0",
"uuid": "^9.0.0"
}
}