@huskel/sdk 0.1.0 → 0.2.1

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/package.json CHANGED
@@ -1,26 +1,32 @@
1
1
  {
2
2
  "name": "@huskel/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Huskel AI-powered search SDK for SPAs",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",
8
- "files": ["dist"],
9
- "scripts": {
10
- "build": "tsup src/index.ts --format cjs,esm --dts",
11
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch"
12
- },
8
+ "files": [
9
+ "dist"
10
+ ],
13
11
  "peerDependencies": {
14
12
  "react": ">=17",
15
13
  "react-dom": ">=17"
16
14
  },
17
15
  "peerDependenciesMeta": {
18
- "react": { "optional": true },
19
- "react-dom": { "optional": true }
16
+ "react": {
17
+ "optional": true
18
+ },
19
+ "react-dom": {
20
+ "optional": true
21
+ }
20
22
  },
21
23
  "devDependencies": {
22
24
  "@types/react": "^18.0.0",
23
25
  "tsup": "^8.0.0",
24
26
  "typescript": "^5.0.0"
27
+ },
28
+ "scripts": {
29
+ "build": "tsup src/index.ts --format cjs,esm --dts",
30
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch"
25
31
  }
26
- }
32
+ }