forked from crazywoola/dify-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "dify-bot",
"version": "1.0.0",
"description": "Dify Bot",
"main": "index.js",
"author": "crazywoola",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.11.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc",
"dev": "nodemon --exec ts-node ./src/index.ts",
"start": "node ./dist/index.js",
"husky": "husky install && npx husky add .husky/pre-commit 'npx lint-staged'"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.7.0",
"@slack/bolt": "^3.13.3",
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.14.198",
"@types/yargs": "^17.0.24",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"lodash": "^4.17.21"
}
}