@simon_he/pi 0.1.4 → 0.1.5
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 +8 -0
- package/dist/index.cjs +199 -6578
- package/dist/index.js +203 -6604
- package/package.json +11 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simon_he/pi",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"packageManager": "pnpm@9.15.9",
|
|
6
6
|
"description": "An intelligent cross-platform package manager and CLI tool that autodetects project environments (Node.js, Go, Rust, Python) with beautiful loading animations and smart command execution.",
|
|
7
7
|
"author": {
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"exports": {
|
|
47
47
|
".": {
|
|
48
48
|
"types": "./dist/index.d.ts",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
49
|
+
"import": "./dist/index.js",
|
|
50
|
+
"require": "./dist/index.cjs"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"main": "./dist/index.cjs",
|
|
@@ -87,26 +87,25 @@
|
|
|
87
87
|
"prepublishOnly": "nr build",
|
|
88
88
|
"release": "bumpp && npm publish",
|
|
89
89
|
"start": "esno src/index.ts",
|
|
90
|
-
"test": "vitest"
|
|
91
|
-
"typecheck": "tsc --noEmit"
|
|
90
|
+
"test": "vitest"
|
|
92
91
|
},
|
|
93
92
|
"dependencies": {
|
|
94
|
-
"ccommand": "^1.0.
|
|
95
|
-
"fast-glob": "
|
|
93
|
+
"ccommand": "^1.0.80",
|
|
94
|
+
"fast-glob": "^3.3.3",
|
|
96
95
|
"lazy-js-utils": "^0.1.37",
|
|
96
|
+
"ora": "^6.3.1",
|
|
97
|
+
"picocolors": "^1.1.1",
|
|
97
98
|
"semver": "^7.7.1"
|
|
98
99
|
},
|
|
99
100
|
"devDependencies": {
|
|
100
|
-
"@antfu/eslint-config": "^
|
|
101
|
+
"@antfu/eslint-config": "^4.10.2",
|
|
101
102
|
"@types/node": "^18.19.81",
|
|
102
103
|
"bumpp": "^8.2.1",
|
|
103
|
-
"eslint": "^
|
|
104
|
+
"eslint": "^9.23.0",
|
|
104
105
|
"lint-staged": "^13.3.0",
|
|
105
|
-
"ora": "^6.3.1",
|
|
106
|
-
"picocolors": "^1.1.1",
|
|
107
106
|
"prettier": "^2.8.8",
|
|
108
107
|
"tsup": "^8.4.0",
|
|
109
|
-
"tsx": "^
|
|
108
|
+
"tsx": "^4.19.3",
|
|
110
109
|
"typescript": "^4.9.5",
|
|
111
110
|
"vitest": "^3.0.9"
|
|
112
111
|
},
|