-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.79 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@kash-88/alerts",
"version": "1.3.0",
"description": "A library for seamless integration with the DonationAlerts API. It provides a comprehensive set of tools for authorization, user token management, retrieving account data, and handling various other API interactions.",
"type": "module",
"keywords": [
"DonationAlerts",
"DonationAlerts API",
"DonationAlerts SDK",
"DonationAlerts WebSocket",
"DA API",
"DA SDK",
"DA WebSocket"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"homepage": "https://github.com/kash-ts/alerts-SDK#readme",
"bugs": {
"url": "https://github.com/kash-ts/alerts-SDK/issues"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kash-ts/alerts-SDK.git"
},
"license": "MIT",
"author": "kash-ts",
"scripts": {
"publish:github": "npm publish",
"build": "tsc && tsc-alias",
"prepublishOnly": "npm run build",
"publish:npm-latest": "npm publish --@kash-88:registry=https://registry.npmjs.org/ --tag latest",
"publish:npm-dev": "npm publish --@kash-88:registry=https://registry.npmjs.org/ --tag dev",
"publish:npm-beta": "npm publish --@kash-88:registry=https://registry.npmjs.org/ --tag beta"
},
"dependencies": {
"axios": "^1.10.0",
"typed-emitter": "^2.1.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"dotenv": "^16.4.5",
"readline-sync": "^1.4.10",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
}
}