forked from boxfish-jp/Nicolive-API
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "@kikurage/nicolive-api",
"version": "0.0.4",
"description": "ニコニコ生放送のAPIを利用するための非公式APIクライアント",
"author": {
"name": "kikurage",
"email": "y.kikura@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Kiikurage/Nicolive-API"
},
"main": "./index.js",
"scripts": {
"build": "npm run build:proto && npm run build:ts",
"build:proto": "buf generate",
"build:ts": "tsc",
"bundle": "npm run build && cp package.json README.md build",
"pack": "npm run bundle && npm pack ./build",
"prebuild:ts": "npm run clean:ts",
"prebuild:proto": "npm run clean:proto",
"clean": "npm run clean:ts && npm run clean:proto",
"clean:ts": "rimraf ./build",
"clean:proto": "rimraf ./src/gen",
"lint": "biome check --write src"
},
"dependencies": {
"@bufbuild/protobuf": "^2.0.0",
"cheerio": "^1.0.0-rc.12",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@bufbuild/buf": "^1.35.1",
"@bufbuild/protoc-gen-es": "^2.0.0",
"@types/ws": "^8.5.12",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
}
}