nuxt-skill-hub 0.0.7 → 0.1.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.
- package/README.md +11 -1
- package/dist/module.d.mts +43 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +1062 -206
- package/package.json +26 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-skill-hub",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Teach your AI agent the Nuxt way with best practices and module guidance.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,48 +24,49 @@
|
|
|
24
24
|
"nuxt-best-practices"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nuxt/kit": "^4.
|
|
27
|
+
"@nuxt/kit": "^4.4.6",
|
|
28
28
|
"automd": "^0.4.3",
|
|
29
|
-
"consola": "^3.4.
|
|
30
|
-
"giget": "^3.
|
|
29
|
+
"consola": "^3.4.2",
|
|
30
|
+
"giget": "^3.2.0",
|
|
31
31
|
"gray-matter": "^4.0.3",
|
|
32
|
-
"mlly": "^1.8.
|
|
33
|
-
"ofetch": "^1.5.
|
|
32
|
+
"mlly": "^1.8.2",
|
|
33
|
+
"ofetch": "^1.5.1",
|
|
34
34
|
"ohash": "^2.0.11",
|
|
35
|
-
"pathe": "^2.0.
|
|
36
|
-
"pkg-types": "^2.3.
|
|
37
|
-
"std-env": "^4.
|
|
38
|
-
"tinyglobby": "^0.2.
|
|
35
|
+
"pathe": "^2.0.3",
|
|
36
|
+
"pkg-types": "^2.3.1",
|
|
37
|
+
"std-env": "^4.1.0",
|
|
38
|
+
"tinyglobby": "^0.2.17",
|
|
39
39
|
"unagent": "^0.0.8"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@nuxt/devtools": "^3.2.
|
|
43
|
-
"@nuxt/eslint-config": "^1.15.
|
|
42
|
+
"@nuxt/devtools": "^3.2.4",
|
|
43
|
+
"@nuxt/eslint-config": "^1.15.2",
|
|
44
44
|
"@nuxt/module-builder": "^1.0.2",
|
|
45
|
-
"@nuxt/schema": "^4.
|
|
46
|
-
"@nuxt/test-utils": "^4.0.
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"nuxt": "^4.3.1",
|
|
45
|
+
"@nuxt/schema": "^4.4.6",
|
|
46
|
+
"@nuxt/test-utils": "^4.0.3",
|
|
47
|
+
"@types/node": "^25.9.1",
|
|
48
|
+
"@vue/test-utils": "^2.4.10",
|
|
49
|
+
"bumpp": "^11.1.0",
|
|
50
|
+
"eslint": "^10.4.1",
|
|
51
|
+
"happy-dom": "^20.9.0",
|
|
52
|
+
"nuxt": "^4.4.6",
|
|
54
53
|
"typescript": "~5.9.3",
|
|
55
|
-
"vitest": "^4.
|
|
56
|
-
"vue": "^3.5.
|
|
57
|
-
"vue-tsc": "^3.
|
|
54
|
+
"vitest": "^4.1.7",
|
|
55
|
+
"vue": "^3.5.35",
|
|
56
|
+
"vue-tsc": "^3.3.3"
|
|
58
57
|
},
|
|
59
58
|
"scripts": {
|
|
60
59
|
"dev": "pnpm --dir docs dev",
|
|
61
60
|
"dev:build": "nuxt-module-build build --stub --watch",
|
|
62
61
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
|
|
63
62
|
"release": "bumpp --push --no-push-all",
|
|
63
|
+
"release:check-version": "node ./scripts/check-npm-version.mjs",
|
|
64
64
|
"lint": "eslint .",
|
|
65
|
-
"test": "pnpm run dev:prepare && vitest run && pnpm run test:pack",
|
|
65
|
+
"test": "pnpm run dev:prepare && pnpm run docs:prepare && vitest run && pnpm run test:pack",
|
|
66
66
|
"test:pack": "node ./scripts/check-packlist.mjs",
|
|
67
67
|
"test:watch": "vitest watch",
|
|
68
68
|
"test:types": "pnpm run dev:prepare && vue-tsc --noEmit",
|
|
69
|
+
"docs:prepare": "pnpm --dir docs exec nuxt prepare",
|
|
69
70
|
"docs:typecheck": "pnpm --dir docs typecheck",
|
|
70
71
|
"typecheck": "pnpm run test:types && pnpm run docs:typecheck"
|
|
71
72
|
}
|