This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "asoul-notifications",
"displayName": "A-SOUL 提醒小助手",
"version": "0.8.1",
"description": "A-SOUL 成员新动态提醒, 直播状态提醒",
"publisher": "JiangYan",
"icon": "logo.png",
"keywords": [
"asoul",
"bilibili",
"嘉然",
"向晚",
"贝拉",
"乃琳",
"珈乐"
],
"repository": {
"type": "git",
"url": "https://github.com/luooooob/vscode-asoul-notifications.git"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "A-SOUL 提醒小助手",
"properties": {
"asoulNotifications.asoulMembers": {
"type": "array",
"default": [
{
"nickname": "向晚",
"bilibiliId": 672346917,
"douyinId": "MS4wLjABAAAAxOXMMwlShWjp4DONMwfEEfloRYiC1rXwQ64eydoZ0ORPFVGysZEd4zMt8AjsTbyt"
},
{
"nickname": "贝拉",
"bilibiliId": 672353429,
"douyinId": "MS4wLjABAAAAlpnJ0bXVDV6BNgbHUYVWnnIagRqeeZyNyXB84JXTqAS5tgGjAtw0ZZkv0KSHYyhP"
},
{
"nickname": "珈乐",
"bilibiliId": 351609538,
"douyinId": "MS4wLjABAAAAuZHC7vwqRhPzdeTb24HS7So91u9ucl9c8JjpOS2CPK-9Kg2D32Sj7-mZYvUCJCya"
},
{
"nickname": "嘉然",
"bilibiliId": 672328094,
"douyinId": "MS4wLjABAAAA5ZrIrbgva_HMeHuNn64goOD2XYnk4ItSypgRHlbSh1c"
},
{
"nickname": "乃琳",
"bilibiliId": 672342685,
"douyinId": "MS4wLjABAAAAxCiIYlaaKaMz_J1QaIAmHGgc3bTerIpgTzZjm0na8w5t2KTPrCz4bm_5M5EMPy92"
},
{
"nickname": "A-SOUL_Official",
"bilibiliId": 703007996,
"douyinId": "MS4wLjABAAAAflgvVQ5O1K4RfgUu3k0A2erAZSK7RsdiqPAvxcObn93x2vk4SKk1eUb6l_D4MX-n"
}
],
"description": "成员信息"
},
"asoulNotifications.bilibiliLiveStatus.enabled": {
"type": "boolean",
"default": true,
"description": "打开/关闭 Bilibili 正在直播提醒"
},
"asoulNotifications.bilibiliDynamics.enabled": {
"type": "boolean",
"default": true,
"description": "打开/关闭新动态提醒"
},
"asoulNotifications.douyinVideos.enabled": {
"type": "boolean",
"default": false,
"description": "打开/关闭抖音新视频提醒(测试中)"
}
}
}
},
"scripts": {
"lint": "eslint .",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"watch": "npm run esbuild-base -- --sourcemap",
"test": "tsc -p ./ && node ./out/test/runTest.js"
},
"dependencies": {
"axios": "^0.24.0",
"esbuild": "^0.14.8",
"node-cron": "^3.0.0"
},
"devDependencies": {
"@luooooob/eslint-config": "^0.5.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "17.x",
"@types/node-cron": "^3.0.0",
"@types/vscode": "^1.60.0",
"eslint": "^8.5.0",
"glob": "^7.2.0",
"mocha": "^8.4.0",
"typescript": "^4.5.4",
"vsce": "^2.5.3",
"vscode-test": "^1.5.2"
}
}