-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "crypto-bot-api",
"version": "0.3.4",
"description": "Simple and minimalistic client for Telegram CryptoBot Crypto Pay API",
"author": "Sergei Ivankov <sergeiivankov@pm.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sergeiivankov/crypto-bot-api"
},
"exports": {
"types": "./lib/types.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"build": "npm run build-docs && npm run build-lib && npm run build-dist",
"build-docs": "typedoc",
"build-lib": "tsc",
"build-dist": "rollup -c",
"watch": "run-p watch-docs watch-lib watch-dist",
"watch-docs": "typedoc --watch --preserveWatchOutput",
"watch-lib": "tsc -w",
"watch-dist": "rollup -c -w",
"lint": "eslint"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.5",
"eslint": "^9.10.0",
"eslint-plugin-tsdoc": "^0.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.21.3",
"tslib": "^2.7.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"keywords": [
"crypto-bot-api",
"crypto-bot",
"crypto-pay-api",
"crypto-pay",
"api-client",
"crypto",
"cryptocurrency",
"exchage",
"payment-processing",
"cryptocurrency-processing",
"ton",
"the-open-network",
"telegram-bot"
]
}