forked from LinaTsukusu/youtube-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "narze-youtube-chat",
"version": "2.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/narze/youtube-chat.git",
"author": "narze <[email protected]>",
"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": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.2.0",
"typed-emitter": "^2.1.0"
}
}