breadcpack 0.9.7 → 1.0.0-beta.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.
package/dist/cli.d.mts ADDED
@@ -0,0 +1 @@
1
+ export { };
package/dist/cli.mjs ADDED
@@ -0,0 +1,13 @@
1
+ import { breadc } from "breadc";
2
+
3
+ //#region package.json
4
+ var version = "1.0.0-beta.2";
5
+
6
+ //#endregion
7
+ //#region src/cli.ts
8
+ const cli = breadc("breadcpack", { version });
9
+ cli.command("[root]", "Create breadc project").action((root, option) => {});
10
+ cli.run(process.argv.slice(2)).catch((err) => console.error(err));
11
+
12
+ //#endregion
13
+ export { };
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare const hello = 1;
3
+ //#endregion
4
+ export { hello };
package/dist/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/index.ts
2
+ const hello = 1;
3
+
4
+ //#endregion
5
+ export { hello };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "breadcpack",
3
- "version": "0.9.7",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Yet another Command Line Application Framework with fully strong TypeScript support",
5
5
  "keywords": [
6
6
  "breadc",
@@ -23,12 +23,12 @@
23
23
  "type": "module",
24
24
  "exports": {
25
25
  ".": {
26
- "import": "./dist/index.mjs",
27
- "types": "./dist/index.d.ts"
26
+ "types": "./dist/index.d.mts",
27
+ "import": "./dist/index.mjs"
28
28
  }
29
29
  },
30
30
  "module": "dist/index.mjs",
31
- "types": "dist/index.d.ts",
31
+ "types": "dist/index.d.mts",
32
32
  "bin": {
33
33
  "breadcpack": "breadcpack.mjs"
34
34
  },
@@ -37,12 +37,12 @@
37
37
  "*.mjs"
38
38
  ],
39
39
  "dependencies": {
40
- "@breadc/core": "0.9.7",
41
- "@breadc/color": "0.9.7"
40
+ "@breadc/color": "1.0.0-beta.2",
41
+ "breadc": "1.0.0-beta.2",
42
+ "@breadc/core": "1.0.0-beta.2"
42
43
  },
43
44
  "scripts": {
44
- "build": "unbuild",
45
- "format": "prettier --write src/**/*.ts",
45
+ "build": "tsdown",
46
46
  "typecheck": "tsc --noEmit"
47
47
  }
48
48
  }