@hile/http 1.0.7 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -3
- package/skill.json +16 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hile/http",
|
|
3
3
|
"description": "Hile http - HTTP service framework",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist",
|
|
15
15
|
"README.md",
|
|
16
|
-
"SKILL.md"
|
|
16
|
+
"SKILL.md",
|
|
17
|
+
"skill.json"
|
|
17
18
|
],
|
|
18
19
|
"license": "MIT",
|
|
19
20
|
"publishConfig": {
|
|
@@ -29,5 +30,5 @@
|
|
|
29
30
|
"koa": "^3.1.2",
|
|
30
31
|
"koa-compose": "^4.1.0"
|
|
31
32
|
},
|
|
32
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "6454023e85118e1ae4d71545b59adf71890aace5"
|
|
33
34
|
}
|
package/skill.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hile/http",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Hile http - HTTP service framework",
|
|
5
|
+
"repository": "https://github.com/cevio/hile/tree/main/packages/http",
|
|
6
|
+
"skills": [
|
|
7
|
+
{
|
|
8
|
+
"id": "http",
|
|
9
|
+
"name": "Hile HTTP 服务框架优化指南",
|
|
10
|
+
"description": "提供 Hile 开发者使用 HTTP 服务框架开发 Hile 应用的指南",
|
|
11
|
+
"path": "SKILL.md"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"authors": ["evio"],
|
|
15
|
+
"license": "MIT"
|
|
16
|
+
}
|