@vue-solana/nuxt 0.2.7 → 0.2.8
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 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ New to Solana? Start with the official docs and the project concepts guide:
|
|
|
11
11
|
- [Solana Clusters](https://solana.com/docs/references/clusters)
|
|
12
12
|
- [Vue Solana Concepts Guide](https://vue-solana-docs.vercel.app/concepts/solana-for-vue-developers)
|
|
13
13
|
- [`@vue-solana/nuxt` docs](https://vue-solana-docs.vercel.app/packages/nuxt)
|
|
14
|
+
- [Agent Skill](https://vue-solana-docs.vercel.app/agent-skill)
|
|
14
15
|
- [Live demo](https://vue-solana-docs.vercel.app/demo)
|
|
15
16
|
|
|
16
17
|
## Install
|
|
@@ -149,6 +150,16 @@ Docs: <a href="https://vue-solana-docs.vercel.app/examples/nuxt" target="_blank"
|
|
|
149
150
|
|
|
150
151
|
Live demo: [vue-solana-docs.vercel.app/demo](https://vue-solana-docs.vercel.app/demo)
|
|
151
152
|
|
|
153
|
+
## AI Agent Skill
|
|
154
|
+
|
|
155
|
+
If you use an AI coding agent, install the Vue Solana Agent Skill for Nuxt module setup, auto-imported composables, SSR caveats, wallet flow guidance, and transaction gotchas:
|
|
156
|
+
|
|
157
|
+
```sh
|
|
158
|
+
npx skills add vue-solana/vue-solana --skill vue-solana
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Docs: [Vue Solana Agent Skill](https://vue-solana-docs.vercel.app/agent-skill)
|
|
162
|
+
|
|
152
163
|
## Known TypeScript Issue
|
|
153
164
|
|
|
154
165
|
`@solana/web3-compat@0.0.21` currently has broken TypeScript metadata. Runtime imports still use the real package, but TypeScript consumers may need a local declaration shim.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue-solana/nuxt",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "Nuxt module for Solana applications.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@vue-solana/core": "0.3.
|
|
42
|
-
"@vue-solana/vue": "0.3.
|
|
41
|
+
"@vue-solana/core": "0.3.3",
|
|
42
|
+
"@vue-solana/vue": "0.3.3"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@solana/web3-compat": "^0.0.21",
|