-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "ogp2embed",
"version": "0.0.1",
"description": "Extract url from Discord messages, fetches information of the site, and sends it to the channel as an embed.",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"dev": "cross-env NODE_ENV=development nodemon",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc"
},
"dependencies": {
"@types/node": "^16.11.8",
"@types/open-graph-scraper": "^4.8.1",
"@types/validator": "^13.7.0",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"got": "^11.8.3",
"libxmljs2": "^0.29.0",
"npm-run-all": "^4.1.5",
"open-graph-scraper": "^4.10.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.11.0",
"sequelize-cli": "^6.3.0",
"sequelize-typescript": "^2.1.1",
"sqlite3": "github:mapbox/node-sqlite3",
"typescript": "^4.4.4",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"winston-transport": "^4.4.0"
},
"engines": {
"node": "16.x"
},
"repository": {
"url": "https://github.com/v-ut-d/OGP2Embed"
},
"license": "MIT",
"keywords": [
"node",
"discord.js",
"discord",
"ogp"
],
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0"
}
}