-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.49 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
63
{
"name": "@nauxscript/bilive",
"version": "0.0.7",
"description": "一个命令行弹幕姬 / display bullet from bilibili live stream comments in command line.",
"main": "dist/index.cjs",
"type": "module",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"release": "bumpp --execute=\"pnpm build\" && pnpm publish",
"test": "vitest",
"lint": "eslint ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"bin": {
"bilive": "./cli.mjs"
},
"files": [
"dist"
],
"keywords": [
"bilibili"
],
"author": {
"name": "nauxscript",
"url": "https://github.com/Nauxscript"
},
"repository": "https://github.com/Nauxscript/bilive",
"homepage": "https://github.com/Nauxscript/bilive",
"bugs": {
"url": "https://github.com/Nauxscript/bilive/issues"
},
"license": "ISC",
"dependencies": {
"@types/blessed": "^0.1.21",
"blessed": "^0.1.81",
"blive-message-listener": "^0.4.4",
"cac": "^6.7.14",
"chalk": "^5.2.0",
"cross-env": "^7.0.3",
"ohmyfetch": "^0.4.21",
"say": "^0.16.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"@types/node": "^18.11.18",
"bumpp": "^8.2.1",
"eslint": "^8.31.0",
"esno": "^0.16.3",
"typescript": "^4.9.4",
"unbuild": "^1.0.2",
"vite": "^4.1.4",
"vitest": "^0.26.3"
}
}