@cnife/pi-miscs 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +15 -1
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # @cnife/pi-miscs
2
+
3
+ pi 杂项小工具集合。
4
+
5
+ ## 包含
6
+
7
+ - **debug-request-body** — 将请求体写入调试文件(需设置 `PI_DEBUG_REQUEST_BODY` 环境变量)
8
+ - **exit** — 输入 `exit` 退出当前会话
9
+
10
+ ## 安装
11
+
12
+ ```bash
13
+ pi install npm:@cnife/pi-miscs
14
+ ```
package/package.json CHANGED
@@ -1,11 +1,25 @@
1
1
  {
2
2
  "name": "@cnife/pi-miscs",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "pi-package"
7
7
  ],
8
8
  "description": "Miscellaneous small pi extensions (debug, exit)",
9
+ "homepage": "https://github.com/CNife/pi-extensions#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/CNife/pi-extensions/issues"
12
+ },
13
+ "license": "MIT",
14
+ "author": "CNife <CNife@vip.qq.com>",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/CNife/pi-extensions.git"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "provenance": true
22
+ },
9
23
  "pi": {
10
24
  "extensions": [
11
25
  "./extensions"