nuxt-skill-hub 0.0.1 → 0.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.
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-skill-hub",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "configKey": "skillHub",
5
5
  "compatibility": {
6
6
  "nuxt": ">=4.3.0"
package/dist/module.mjs CHANGED
@@ -12,7 +12,7 @@ import { fileURLToPath } from 'mlly';
12
12
  import { downloadTemplate } from 'giget';
13
13
  import { ofetch } from 'ofetch';
14
14
 
15
- const version = "0.0.1";
15
+ const version = "0.0.2";
16
16
  const packageJson = {
17
17
  version: version};
18
18
 
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-skill-hub",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Teach your AI agent the Nuxt way with best practices and module guidance.",
5
- "packageManager": "pnpm@10.30.1",
6
5
  "repository": {
7
6
  "type": "git",
8
7
  "url": "git+https://github.com/onmax/nuxt-skill-hub.git"
@@ -21,48 +20,47 @@
21
20
  "dist",
22
21
  "nuxt-best-practices"
23
22
  ],
24
- "scripts": {
25
- "prepack": "nuxt-module-build build",
26
- "dev": "pnpm --dir docs dev",
27
- "dev:build": "nuxt-module-build build --stub --watch",
28
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
29
- "release": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run prepack && changelogen --release --push",
30
- "lint": "eslint .",
31
- "test": "pnpm run dev:prepare && vitest run && pnpm run test:pack",
32
- "test:pack": "node ./scripts/check-packlist.mjs",
33
- "test:watch": "vitest watch",
34
- "test:types": "pnpm run dev:prepare && vue-tsc --noEmit",
35
- "docs:typecheck": "pnpm --dir docs typecheck",
36
- "typecheck": "pnpm run test:types && pnpm run docs:typecheck"
37
- },
38
23
  "dependencies": {
39
24
  "@nuxt/kit": "^4.3.1",
40
- "automd": "catalog:runtime",
25
+ "automd": "^0.4.3",
41
26
  "consola": "^3.4.0",
42
27
  "giget": "^3.1.2",
43
28
  "gray-matter": "^4.0.3",
44
29
  "ofetch": "^1.5.0",
45
30
  "pathe": "^2.0.0",
46
31
  "pkg-types": "^2.3.0",
47
- "mlly": "catalog:runtime",
48
- "unagent": "catalog:runtime"
32
+ "mlly": "^1.8.1",
33
+ "unagent": "^0.0.8"
49
34
  },
50
35
  "devDependencies": {
51
- "@nuxt/devtools": "catalog:nuxt",
52
- "@nuxt/eslint-config": "catalog:nuxt",
53
- "@nuxt/module-builder": "catalog:nuxt",
54
- "@nuxt/schema": "catalog:nuxt",
55
- "@nuxt/test-utils": "catalog:nuxt",
36
+ "@nuxt/devtools": "^3.2.1",
37
+ "@nuxt/eslint-config": "^1.15.1",
38
+ "@nuxt/module-builder": "^1.0.2",
39
+ "@nuxt/schema": "^4.3.1",
40
+ "@nuxt/test-utils": "^4.0.0",
56
41
  "@nuxtjs/mdc": "^0.20.2",
57
- "@types/node": "catalog:quality",
58
- "@vue/test-utils": "catalog:quality",
59
- "changelogen": "catalog:release",
60
- "eslint": "catalog:quality",
61
- "happy-dom": "catalog:quality",
62
- "nuxt": "catalog:nuxt",
63
- "typescript": "catalog:quality",
64
- "vitest": "catalog:quality",
65
- "vue": "catalog:frontend",
66
- "vue-tsc": "catalog:quality"
42
+ "@types/node": "latest",
43
+ "@vue/test-utils": "^2.4.6",
44
+ "bumpp": "^10.4.1",
45
+ "eslint": "^10.0.1",
46
+ "happy-dom": "^20.7.0",
47
+ "nuxt": "^4.3.1",
48
+ "typescript": "~5.9.3",
49
+ "vitest": "^4.0.18",
50
+ "vue": "^3.5.29",
51
+ "vue-tsc": "^3.2.5"
52
+ },
53
+ "scripts": {
54
+ "dev": "pnpm --dir docs dev",
55
+ "dev:build": "nuxt-module-build build --stub --watch",
56
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
57
+ "release": "bumpp --push --no-push-all",
58
+ "lint": "eslint .",
59
+ "test": "pnpm run dev:prepare && vitest run && pnpm run test:pack",
60
+ "test:pack": "node ./scripts/check-packlist.mjs",
61
+ "test:watch": "vitest watch",
62
+ "test:types": "pnpm run dev:prepare && vue-tsc --noEmit",
63
+ "docs:typecheck": "pnpm --dir docs typecheck",
64
+ "typecheck": "pnpm run test:types && pnpm run docs:typecheck"
67
65
  }
68
- }
66
+ }