@simon_he/pi 0.1.5 → 0.1.6
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/pa.mjs +2 -0
- package/package.json +20 -16
- package/pbuild.mjs +2 -0
- package/pci.mjs +2 -0
- package/pfind.mjs +2 -0
- package/pi.mjs +2 -0
- package/pil.mjs +2 -0
- package/pinit.mjs +2 -0
- package/pio.mjs +2 -0
- package/pix.mjs +2 -0
- package/prun.mjs +2 -0
- package/pu.mjs +2 -0
- package/pui.mjs +2 -0
package/dist/index.cjs
CHANGED
|
@@ -46,7 +46,7 @@ var import_node_process = __toESM(require("process"), 1);
|
|
|
46
46
|
var import_node = require("lazy-js-utils/node");
|
|
47
47
|
|
|
48
48
|
// package.json
|
|
49
|
-
var version = "0.1.
|
|
49
|
+
var version = "0.1.6";
|
|
50
50
|
|
|
51
51
|
// src/help.ts
|
|
52
52
|
var isZh = import_node_process.default.env.PI_Lang === "zh";
|
package/dist/index.js
CHANGED
package/pa.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simon_he/pi",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"packageManager": "pnpm@9.15.9",
|
|
6
|
-
"description": "An intelligent cross-platform package manager and CLI tool that autodetects project environments (Node.
|
|
6
|
+
"description": "An intelligent cross-platform package manager and CLI tool that autodetects project environments (Node.mjs, Go, Rust, Python) with beautiful loading animations and smart command execution.",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Simon He",
|
|
9
9
|
"url": "https://github.com/Simon-He95"
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"exports": {
|
|
47
47
|
".": {
|
|
48
48
|
"types": "./dist/index.d.ts",
|
|
49
|
-
"import": "./dist/index.
|
|
49
|
+
"import": "./dist/index.mjs",
|
|
50
50
|
"require": "./dist/index.cjs"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"main": "./dist/index.cjs",
|
|
54
|
-
"module": "./dist/index.
|
|
54
|
+
"module": "./dist/index.mjs",
|
|
55
55
|
"types": "./dist/index.d.ts",
|
|
56
56
|
"typesVersions": {
|
|
57
57
|
"*": {
|
|
@@ -62,18 +62,18 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"bin": {
|
|
65
|
-
"pi": "./pi.
|
|
66
|
-
"pio": "./pio.
|
|
67
|
-
"pix": "./pix.
|
|
68
|
-
"pa": "./pa.
|
|
69
|
-
"pu": "./pu.
|
|
70
|
-
"pci": "./pci.
|
|
71
|
-
"pil": "./pil.
|
|
72
|
-
"pui": "./pui.
|
|
73
|
-
"prun": "./prun.
|
|
74
|
-
"pinit": "./pinit.
|
|
75
|
-
"pbuild": "./pbuild.
|
|
76
|
-
"pfind": "./pfind.
|
|
65
|
+
"pi": "./pi.mjs",
|
|
66
|
+
"pio": "./pio.mjs",
|
|
67
|
+
"pix": "./pix.mjs",
|
|
68
|
+
"pa": "./pa.mjs",
|
|
69
|
+
"pu": "./pu.mjs",
|
|
70
|
+
"pci": "./pci.mjs",
|
|
71
|
+
"pil": "./pil.mjs",
|
|
72
|
+
"pui": "./pui.mjs",
|
|
73
|
+
"prun": "./prun.mjs",
|
|
74
|
+
"pinit": "./pinit.mjs",
|
|
75
|
+
"pbuild": "./pbuild.mjs",
|
|
76
|
+
"pfind": "./pfind.mjs"
|
|
77
77
|
},
|
|
78
78
|
"files": [
|
|
79
79
|
"dist"
|
|
@@ -109,6 +109,10 @@
|
|
|
109
109
|
"typescript": "^4.9.5",
|
|
110
110
|
"vitest": "^3.0.9"
|
|
111
111
|
},
|
|
112
|
+
"overrides": {
|
|
113
|
+
"glob": "^9.3.5",
|
|
114
|
+
"inflight": "npm:@isaacs/inflight@^1.0.0"
|
|
115
|
+
},
|
|
112
116
|
"lint-staged": {
|
|
113
117
|
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint . --fix"
|
|
114
118
|
}
|
package/pbuild.mjs
ADDED
package/pci.mjs
ADDED
package/pfind.mjs
ADDED
package/pi.mjs
ADDED
package/pil.mjs
ADDED
package/pinit.mjs
ADDED
package/pio.mjs
ADDED
package/pix.mjs
ADDED
package/prun.mjs
ADDED
package/pu.mjs
ADDED
package/pui.mjs
ADDED