-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 964 Bytes
/
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
{
"name": "soop-extension",
"version": "0.1.2",
"license": "MIT",
"description": "라이브 스트리밍 서비스 숲(soop)의 비공식 API 라이브러리",
"keywords": [
"soop"
],
"author": {
"name": "reindeer002",
"email": "[email protected]",
"url": "https://github.com/maro5397"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ts-node example.ts",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/maro5397/soop.git"
},
"bugs": {
"url": "https://github.com/maro5397/soop/issues",
"email": "[email protected]"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"typescript": "^5.7.2"
},
"dependencies": {
"eslint": "^9.17.0",
"ws": "^8.18.0"
}
}