@vue-solana/vue 0.3.2 → 0.3.3
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 +2 -2
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/vue` docs](https://vue-solana-docs.vercel.app/packages/vue)
|
|
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
|
|
@@ -183,6 +184,16 @@ Docs: <a href="https://vue-solana-docs.vercel.app/examples/vue-vite" target="_bl
|
|
|
183
184
|
|
|
184
185
|
Live demo: [vue-solana-docs.vercel.app/demo](https://vue-solana-docs.vercel.app/demo)
|
|
185
186
|
|
|
187
|
+
## AI Agent Skill
|
|
188
|
+
|
|
189
|
+
If you use an AI coding agent, install the Vue Solana Agent Skill for plugin setup, composable imports, wallet flow guidance, transaction gotchas, and verification commands:
|
|
190
|
+
|
|
191
|
+
```sh
|
|
192
|
+
npx skills add vue-solana/vue-solana --skill vue-solana
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Docs: [Vue Solana Agent Skill](https://vue-solana-docs.vercel.app/agent-skill)
|
|
196
|
+
|
|
186
197
|
## API
|
|
187
198
|
|
|
188
199
|
- `createSolanaPlugin(options?)`: installs the Vue Solana context.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue-solana/vue",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Vue plugin and composables for Solana applications.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"access": "public"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@vue-solana/core": "0.3.
|
|
81
|
+
"@vue-solana/core": "0.3.3"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
84
|
"@solana/web3-compat": "^0.0.21",
|