-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "kbotify",
"version": "0.2.10",
"description": "kaiheila bot framework",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": " npx ts-node -r tsconfig-paths/register src/tests/init.ts",
"build-mac": "rm -rf dist/ && tsc -p tsconfig.production.json",
"build-win": "@powershell rd .\\dist\\* -r -Force; tsc -p tsconfig.production.json",
"publish-patch": "@powershell npm run build; npm version patch; npm publish",
"eslint": "eslint . --ext .ts --fix",
"make-docs": "npx typedoc --out docs src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fi6/kBotify.git"
},
"keywords": [
"kaiheila",
"bot",
"typescript",
"framework"
],
"author": "FlappyIce",
"license": "MIT",
"bugs": {
"url": "https://github.com/fi6/kBotify/issues"
},
"homepage": "https://github.com/fi6/kBotify#readme",
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/ffmpeg-static": "^3.0.1",
"@types/lru-cache": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^34.0.1",
"prettier": "^2.3.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.10.1",
"tslint": "^6.1.3",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"dependencies": {
"bunyan": "^1.8.15",
"dotenv": "^8.2.0",
"ffmpeg-static": "^5.0.0",
"kaiheila-bot-root": "^0.2.9",
"lru-cache": "^6.0.0"
},
"files": [
"dist"
]
}