@cloudnux/local-cloud-provider 0.2.2 → 0.4.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.
@@ -1940,4 +1940,4 @@ lodash-es/lodash.js:
1940
1940
  * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
1941
1941
  *)
1942
1942
  */
1943
- //# sourceMappingURL=index.mjs.map
1943
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,27 +1,27 @@
1
1
  {
2
2
  "name": "@cloudnux/local-cloud-provider",
3
- "version": "0.2.2",
3
+ "version": "0.4.0",
4
4
  "description": "CloudNux local development cloud provider implementation",
5
5
  "license": "MIT",
6
+ "type": "module",
6
7
  "main": "./dist/index.js",
7
- "module": "./dist/index.mjs",
8
- "types": "./dist/index.d.mts",
8
+ "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "types": "./dist/index.d.mts",
12
- "import": "./dist/index.mjs"
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
13
  },
14
14
  "./queue-plugin": {
15
- "types": "./dist/queue-plugin/index.d.mts",
16
- "import": "./dist/queue-plugin/index.mjs"
15
+ "types": "./dist/queue-plugin/index.d.ts",
16
+ "import": "./dist/queue-plugin/index.js"
17
17
  },
18
18
  "./schedule-plugin": {
19
- "types": "./dist/schedule-plugin/index.d.mts",
20
- "import": "./dist/schedule-plugin/index.mjs"
19
+ "types": "./dist/schedule-plugin/index.d.ts",
20
+ "import": "./dist/schedule-plugin/index.js"
21
21
  },
22
22
  "./dev-console-plugin": {
23
- "types": "./dist/dev-console-plugin/index.d.mts",
24
- "import": "./dist/dev-console-plugin/index.mjs"
23
+ "types": "./dist/dev-console-plugin/index.d.ts",
24
+ "import": "./dist/dev-console-plugin/index.js"
25
25
  }
26
26
  },
27
27
  "files": [
@@ -40,10 +40,14 @@
40
40
  "lint": "eslint . --max-warnings 0",
41
41
  "lint:fix": "eslint . --fix",
42
42
  "type-check": "tsc --noEmit",
43
+ "test": "vitest run",
44
+ "test:watch": "vitest",
45
+ "test:ui": "vitest --ui",
46
+ "test:coverage": "vitest run --coverage",
43
47
  "clean": "rm -rf dist"
44
48
  },
45
49
  "dependencies": {
46
- "@cloudnux/core-cloud-provider": "0.1.0",
50
+ "@cloudnux/core-cloud-provider": "0.3.0",
47
51
  "@fastify/cors": "^11.1.0",
48
52
  "@fastify/static": "^8.0.0",
49
53
  "axios": "1.9.0",
@@ -55,7 +59,9 @@
55
59
  "log-symbols": "^7.0.1"
56
60
  },
57
61
  "devDependencies": {
58
- "@types/node": "22.10.3"
62
+ "@types/node": "^24.10.1",
63
+ "@vitest/coverage-v8": "^4.0.14",
64
+ "vitest": "^4.0.14"
59
65
  },
60
66
  "publishConfig": {
61
67
  "access": "public",