@megasaver/cli 1.0.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/dist-bundle/mega.mjs +253333 -0
  2. package/package.json +30 -0
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@megasaver/cli",
3
+ "version": "1.0.2",
4
+ "description": "Mega Saver CLI - the `mega` command.",
5
+ "type": "module",
6
+ "bin": {
7
+ "mega": "./dist-bundle/mega.mjs"
8
+ },
9
+ "files": [
10
+ "dist-bundle"
11
+ ],
12
+ "sideEffects": false,
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "dependencies": {
17
+ "typescript": "^5.7.3"
18
+ },
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "bundle": "tsup --config tsup.bundle.config.ts",
22
+ "dev": "tsup --watch",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "typecheck": "tsc -b --noEmit && tsc -p tsconfig.test.json --noEmit",
26
+ "clean": "rm -rf dist dist-bundle .turbo",
27
+ "prepack": "pnpm run bundle && node scripts/strip-publish-manifest.mjs prepack",
28
+ "postpack": "node scripts/strip-publish-manifest.mjs postpack"
29
+ }
30
+ }