stoat-selfbot.js 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +101 -0
- package/dist/index.d.mts +3502 -0
- package/dist/index.d.ts +3502 -0
- package/dist/index.js +6971 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +6897 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "stoat-selfbot.js",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A Stoat selfbot client for Node.js with discord.js-like API. Uses X-Session-Token for authentication. Written in TypeScript.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=21.0.0"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/ScarysMonsters/stoat-selfbot.js.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/ScarysMonsters/stoat-selfbot.js/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/ScarysMonsters/stoat-selfbot.js#readme",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"revoltjs",
|
|
24
|
+
"revolt.js",
|
|
25
|
+
"stoatjs",
|
|
26
|
+
"stoat.js",
|
|
27
|
+
"bot",
|
|
28
|
+
"selfbot",
|
|
29
|
+
"client",
|
|
30
|
+
"stoatbot",
|
|
31
|
+
"stoat",
|
|
32
|
+
"stoat-selfbot",
|
|
33
|
+
"typescript"
|
|
34
|
+
],
|
|
35
|
+
"author": "ScarysMonsters",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/jest": "^30.0.0",
|
|
39
|
+
"@types/node": "^22.15.2",
|
|
40
|
+
"@types/ws": "^8.18.1",
|
|
41
|
+
"cross-env": "^10.1.0",
|
|
42
|
+
"eslint": "^10.0.0",
|
|
43
|
+
"eslint-config-prettier": "^10.1.2",
|
|
44
|
+
"jest": "^30.3.0",
|
|
45
|
+
"prettier": "^3.5.3",
|
|
46
|
+
"rimraf": "^6.0.1",
|
|
47
|
+
"ts-jest": "^29.4.9",
|
|
48
|
+
"tsup": "^8.5.1",
|
|
49
|
+
"typescript": "^5.8.3"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@livekit/rtc-node": "^0.13.22",
|
|
53
|
+
"axios": "^1.12.2",
|
|
54
|
+
"form-data": "^4.0.2",
|
|
55
|
+
"revolt-api": "^0.8.9",
|
|
56
|
+
"ws": "^8.18.1"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"lint": "eslint . --ext .ts --fix",
|
|
60
|
+
"build": "rimraf dist && tsup ./src/index.ts --format cjs,esm --clean --dts --sourcemap",
|
|
61
|
+
"start": "pnpm build && node --enable-source-maps dist/index.js",
|
|
62
|
+
"testClient": "pnpm test:build && node --enable-source-maps dist/test.js",
|
|
63
|
+
"testClient:debug": "cross-env NODE_ENV=DEV pnpm testClient",
|
|
64
|
+
"clean": "rimraf dist",
|
|
65
|
+
"test:build": "rimraf dist && tsc -p tsconfig.json",
|
|
66
|
+
"test": "jest",
|
|
67
|
+
"test:watch": "jest --watch",
|
|
68
|
+
"test:coverage": "jest --coverage",
|
|
69
|
+
"prepublishOnly": "pnpm build && pnpm test"
|
|
70
|
+
},
|
|
71
|
+
"packageManager": "pnpm@9.0.0"
|
|
72
|
+
}
|