@x-skills-for-ai/svelte 1.0.0 → 1.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +9 -6
package/README.md CHANGED
@@ -1,18 +1,18 @@
1
- # xskills-svelte
1
+ # @x-skills-for-ai/svelte
2
2
 
3
- Svelte integration for [xskills-core](..).
3
+ Svelte integration for [@x-skills-for-ai/core](..).
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```
8
- npm install xskills-svelte xskills-core svelte
8
+ npm install @x-skills-for-ai/svelte
9
9
  ```
10
10
 
11
11
  ## Usage
12
12
 
13
13
  ```svelte
14
14
  <script lang="ts">
15
- import { useXSkill } from 'xskills-svelte';
15
+ import { useXSkill } from '@x-skills-for-ai/svelte';
16
16
 
17
17
  let count = 0;
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x-skills-for-ai/svelte",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Svelte helper for easy integration with xskills-core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,16 +11,19 @@
11
11
  "svelte": "^4.0.0 || ^5.0.0"
12
12
  },
13
13
  "dependencies": {
14
- "@x-skills-for-ai/core": "^1.0.0"
14
+ "@x-skills-for-ai/core": "^2.2.1"
15
15
  },
16
16
  "devDependencies": {
17
- "typescript": "^5.5.4",
18
- "rimraf": "^5.0.0"
17
+ "rimraf": "^5.0.0",
18
+ "typescript": "^5.5.4"
19
19
  },
20
20
  "scripts": {
21
21
  "build": "rimraf dist && tsc",
22
22
  "dev": "tsc --watch",
23
- "prepublishOnly": "npm run build"
23
+ "prepublishOnly": "npm run build",
24
+ "patch": "npm version patch && npm publish --access public",
25
+ "minor": "npm version minor && npm publish --access public",
26
+ "major": "npm version major && npm publish --access public"
24
27
  },
25
28
  "keywords": [
26
29
  "xskills",
@@ -29,4 +32,4 @@
29
32
  ],
30
33
  "author": "",
31
34
  "license": "MIT"
32
- }
35
+ }