-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.3 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": "el-bot-template",
"version": "0.2.1",
"description": "el-bot 的快速启动模版",
"private": true,
"main": "index.js",
"mcl": {
"folder": "mcl"
},
"scripts": {
"build": "tsup && npm run copy:pkg",
"bot": "nodemon --require dotenv/config dist/index.js",
"copy:pkg": "esmo scripts/copy.ts",
"dev": "tsup --watch && nodemon --require dotenv/config dist/index.js",
"mcl": "cd mcl && ./mcl",
"start": "npm run build && npm run start:bot",
"start:bot": "node --require dotenv/config dist/index.js",
"lint": "eslint \"**/*.{ts,js}\"",
"lint:fix": "eslint \"**/*.{ts,js}\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElpsyCN/el-bot-template.git"
},
"author": {
"name": "YunYouJun",
"email": "me@yunyoujun.cn",
"url": "https://www.yunyoujun.cn"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ElpsyCN/el-bot-template/issues"
},
"homepage": "https://github.com/ElpsyCN/el-bot-template#readme",
"dependencies": {
"chalk": "4",
"el-bot": "^0.9.0-beta.18"
},
"devDependencies": {
"@antfu/eslint-config": "^0.16.1",
"dotenv": "^14.3.2",
"eslint": "^8.7.0",
"esno": "^0.14.0",
"nodemon": "^2.0.12",
"tsup": "^5.11.11",
"typescript": "^4.5.5"
}
}