forked from LinaTsukusu/youtube-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "youtube-chat",
"version": "2.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/LinaTsukusu/youtube-chat.git",
"author": "LinaTsukusu <lina.tsukusu@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"debug": "node --require ts-node/register src/debug.ts",
"test": "jest",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"format-check": "prettier --check \"{src,test}/**/*.ts\""
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"keywords": [
"youtube",
"live",
"chat",
"comment",
"stream"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"axios": "^0.24.0",
"typed-emitter": "^1.4.0"
}
}