@dune2/cli 0.0.16 → 0.0.17

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/cli.js +1 -1
  2. package/package.json +16 -15
package/dist/cli.js CHANGED
@@ -886,7 +886,7 @@ async function upload() {
886
886
  }
887
887
 
888
888
  // package.json
889
- var version = "0.0.15";
889
+ var version = "0.0.16";
890
890
 
891
891
  // src/commands/interactive.ts
892
892
  import enquirer2 from "enquirer";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dune2/cli",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -18,40 +18,41 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
+ "scripts": {
22
+ "build": "tsup src/cli.ts src/index.ts --clean --splitting",
23
+ "dev": "pnpm run build --watch",
24
+ "test": "vitest run",
25
+ "test:u": "vitest -u"
26
+ },
21
27
  "dependencies": {
22
- "@dune2/wasm": "0.0.16",
28
+ "@apidevtools/swagger-parser": "^10.1.0",
29
+ "@dune2/wasm": "workspace:*",
23
30
  "cac": "^6.7.14",
24
31
  "cli-table3": "^0.6.3",
25
32
  "connect": "^3.7.0",
26
33
  "debug": "^4.3.4",
34
+ "enquirer": "^2.3.6",
27
35
  "fs-extra": "^10.1.0",
28
36
  "globby": "^13.1.2",
29
37
  "googleapis": "^108.0.0",
30
38
  "joycon": "^3.1.1",
39
+ "json-schema-to-typescript": "^11.0.2",
40
+ "lodash": "^4.17.21",
31
41
  "open": "^8.4.0",
32
42
  "p-map": "^5.5.0",
33
43
  "path-to-regexp": "^6.2.1",
34
- "picocolors": "^1.0.0",
35
- "enquirer": "^2.3.6",
36
- "json-schema-to-typescript": "^11.0.2",
37
- "@apidevtools/swagger-parser": "^10.1.0",
38
- "lodash": "^4.17.21"
44
+ "picocolors": "^1.0.0"
39
45
  },
40
46
  "devDependencies": {
41
- "openapi-types": "^12.0.2",
42
47
  "@types/debug": "^4.1.7",
43
48
  "@types/lodash": "^4.14.186",
44
49
  "gaxios": "*",
45
50
  "google-auth-library": "*",
51
+ "openapi-types": "^12.0.2",
46
52
  "tsup": "^6.2.3"
47
53
  },
48
54
  "publishConfig": {
49
55
  "access": "public"
50
56
  },
51
- "scripts": {
52
- "build": "tsup src/cli.ts src/index.ts --clean --splitting",
53
- "dev": "pnpm run build --watch",
54
- "test": "vitest run",
55
- "test:u": "vitest -u"
56
- }
57
- }
57
+ "gitHead": "8c8542ea5643054d35d5053f07517ba98589b3a1"
58
+ }