@simon_he/pi 0.2.2 → 0.2.4
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/README.md +0 -1
- package/dist/index.cjs +450 -145
- package/dist/index.mjs +449 -146
- package/package.json +11 -12
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simon_he/pi",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
5
|
-
"packageManager": "pnpm@10.
|
|
4
|
+
"version": "0.2.4",
|
|
5
|
+
"packageManager": "pnpm@10.29.1",
|
|
6
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",
|
|
@@ -84,30 +84,29 @@
|
|
|
84
84
|
"format": "prettier --write --cache .",
|
|
85
85
|
"lint": "eslint .",
|
|
86
86
|
"lint:fix": "eslint . --fix",
|
|
87
|
-
"prepublishOnly": "
|
|
87
|
+
"prepublishOnly": "pnpm build",
|
|
88
88
|
"release": "bumpp && npm publish",
|
|
89
89
|
"start": "esno src/index.ts",
|
|
90
90
|
"test": "vitest"
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"ccommand": "^1.1.
|
|
93
|
+
"ccommand": "^1.1.5",
|
|
94
94
|
"fast-glob": "^3.3.3",
|
|
95
|
-
"lazy-js-utils": "^0.1.
|
|
95
|
+
"lazy-js-utils": "^0.1.50",
|
|
96
96
|
"ora": "^8.2.0",
|
|
97
|
-
"picocolors": "^1.1.1"
|
|
98
|
-
"semver": "^7.7.3"
|
|
97
|
+
"picocolors": "^1.1.1"
|
|
99
98
|
},
|
|
100
99
|
"devDependencies": {
|
|
101
|
-
"@antfu/eslint-config": "^6.
|
|
102
|
-
"@types/node": "^22.19.
|
|
103
|
-
"bumpp": "^10.4.
|
|
100
|
+
"@antfu/eslint-config": "^6.7.3",
|
|
101
|
+
"@types/node": "^22.19.10",
|
|
102
|
+
"bumpp": "^10.4.1",
|
|
104
103
|
"eslint": "^9.39.2",
|
|
105
104
|
"lint-staged": "^13.3.0",
|
|
106
105
|
"prettier": "^2.8.8",
|
|
107
|
-
"tsdown": "^0.20.
|
|
106
|
+
"tsdown": "^0.20.3",
|
|
108
107
|
"tsx": "^4.21.0",
|
|
109
108
|
"typescript": "^5.9.3",
|
|
110
|
-
"vitest": "^4.0.
|
|
109
|
+
"vitest": "^4.0.18"
|
|
111
110
|
},
|
|
112
111
|
"lint-staged": {
|
|
113
112
|
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint . --fix"
|