-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.89 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
64
65
{
"name": "chat-bridge",
"version": "2.0.1",
"description": "Chat Bridge simplifies the integration of Facebook Messenger webhook handling into your Node.js applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/BadEnd777/Chat-Bridge.git"
},
"homepage": "https://chat-bridge.pages.dev/",
"bugs": {
"url": "https:/github.com/BadEnd777/Chat-Bridge/issues"
},
"author": {
"name": "BadEnd777",
"email": "badend777@proton.me"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"facebook",
"messenger",
"webhook",
"bot",
"sdk",
"api",
"messaging",
"platform",
"node",
"nodejs",
"typescript",
"ts"
],
"scripts": {
"build": "tsup",
"format:fix": "prettier --write . --list-different",
"fotmat": "prettier --check .",
"lint": "eslint --ext .ts src",
"prerelease": "pnpm build && changeset add && changeset version && pnpm format:fix",
"release": "pnpm build && changeset publish",
"unimported": "unimported"
},
"dependencies": {
"fastify": "^4.26.2",
"undici": "^6.7.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@swc/core": "^1.4.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"prettier-plugin-pkg": "^0.18.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"unimported": "^1.31.1",
"validate-branch-name": "^1.3.0",
"yalc": "1.0.0-pre.53"
}
}