@simon_he/pi 0.0.98 → 0.1.0

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 CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@simon_he/pi",
3
3
  "type": "module",
4
- "version": "0.0.98",
4
+ "version": "0.1.0",
5
+ "packageManager": "pnpm@9.15.6",
5
6
  "description": "A powerful and flexible command-line tool for managing projects.",
6
7
  "author": "Simon He",
7
8
  "license": "MIT",
@@ -41,24 +42,24 @@
41
42
  }
42
43
  },
43
44
  "bin": {
44
- "pi": "./pi.mjs",
45
- "pio": "./pio.mjs",
46
- "pix": "./pix.mjs",
47
- "pa": "./pa.mjs",
48
- "pu": "./pu.mjs",
49
- "pci": "./pci.mjs",
50
- "pil": "./pil.mjs",
51
- "pui": "./pui.mjs",
52
- "prun": "./prun.mjs",
53
- "pinit": "./pinit.mjs",
54
- "pbuild": "./pbuild.mjs",
55
- "pfind": "./pfind.mjs"
45
+ "pi": "./pi.js",
46
+ "pio": "./pio.js",
47
+ "pix": "./pix.js",
48
+ "pa": "./pa.js",
49
+ "pu": "./pu.js",
50
+ "pci": "./pci.js",
51
+ "pil": "./pil.js",
52
+ "pui": "./pui.js",
53
+ "prun": "./prun.js",
54
+ "pinit": "./pinit.js",
55
+ "pbuild": "./pbuild.js",
56
+ "pfind": "./pfind.js"
56
57
  },
57
58
  "files": [
58
59
  "dist"
59
60
  ],
60
61
  "scripts": {
61
- "build": "tsup ./src/index.ts --format cjs,esm --dts --clean ",
62
+ "build": "tsup ./src/index.ts --format cjs,esm --clean ",
62
63
  "dev": "bun build -- --watch src",
63
64
  "format": "prettier --write --cache .",
64
65
  "lint": "eslint .",
@@ -70,30 +71,26 @@
70
71
  "typecheck": "tsc --noEmit"
71
72
  },
72
73
  "dependencies": {
73
- "ccommand": "^1.0.73",
74
+ "ccommand": "^1.0.74",
74
75
  "fast-glob": "latest",
75
76
  "semver": "^7.7.1"
76
77
  },
77
78
  "devDependencies": {
78
79
  "@antfu/eslint-config": "^0.34.2",
79
- "@types/node": "^18.19.75",
80
+ "@types/node": "^18.19.76",
80
81
  "bumpp": "^8.2.1",
81
82
  "eslint": "^8.57.1",
82
- "lazy-js-utils": "^0.1.30",
83
+ "lazy-js-utils": "^0.1.31",
83
84
  "lint-staged": "^13.3.0",
84
85
  "ora": "^6.3.1",
85
86
  "picocolors": "^1.1.1",
86
87
  "prettier": "^2.8.8",
87
- "rimraf": "^3.0.2",
88
- "tsup": "^6.7.0",
88
+ "tsup": "^8.4.0",
89
89
  "tsx": "^3.14.0",
90
90
  "typescript": "^4.9.5",
91
- "vitest": "^0.27.3"
91
+ "vitest": "^3.0.7"
92
92
  },
93
93
  "lint-staged": {
94
- "*": [
95
- "prettier --write --cache --ignore-unknown"
96
- ],
97
- "*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
94
+ "*.{vue,js,ts,jsx,tsx,md,json}": "eslint . --fix"
98
95
  }
99
96
  }
package/dist/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import * as lazy_js_utils_dist_types_2360f772 from 'lazy-js-utils/dist/types-2360f772';
2
-
3
- declare function setup(): Promise<void | lazy_js_utils_dist_types_2360f772.I>;
4
-
5
- export { setup };
package/pa.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pbuild.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pci.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pfind.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pi.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pil.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pinit.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pio.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pix.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/prun.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pu.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')
package/pui.mjs DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node --no-warnings
2
- import('./dist/index.cjs')