-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 965 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
{
"name": "kivibot-plugin-qweather",
"version": "1.1.0",
"private": false,
"description": "QQ 机器人框架 KiviBot 的 和风天气 插件",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/Sioncovy/kivibot-plugin-qweather"
},
"homepage": "https://github.com/Sioncovy/kivibot-plugin-qweather#readme",
"author": "Sioncovy (https://github.com/Sioncovy)",
"scripts": {
"dev": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"build": "tsc && tsc-alias",
"test": "ava",
"clean": "rimraf lib",
"release": "npm run clean && npm run build && npm publish"
},
"files": [
"lib"
],
"keywords": [
"kivibot",
"kivibot-plugin"
],
"license": "MIT",
"devDependencies": {
"@kivibot/core": "latest",
"@types/node": "^18.11.13",
"ava": "^5.1.0",
"concurrently": "^7.6.0",
"rimraf": "^3.0.2",
"tsc-alias": "^1.8.1",
"typescript": "^4.9.3"
}
}