-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 940 Bytes
/
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
{
"name": "@d-lab/discord-puppet",
"version": "0.6.8",
"description": "NodeJs client to interact with Discord app as a puppet.",
"author": {
"name": "Kevin Andres",
"email": "[email protected]"
},
"private": false,
"keywords": [
"dlab",
"sdk",
"discord"
],
"homepage": "https://github.com/Draym/discord-puppet#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Draym/discord-puppet/tree/main",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"publish-public": "tsc && npm publish --access public"
},
"dependencies": {
"puppeteer": "^19.7.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-data-dir": "^2.4.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"ts-node": "^10.9.1"
}
}