keyring-chatbot-agent 1.0.25 → 1.0.49

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,25 +1,17 @@
1
1
  {
2
2
  "name": "keyring-chatbot-agent",
3
- "version": "1.0.25",
3
+ "version": "1.0.49",
4
4
  "private": false,
5
- "description": "A React chat widget SDK with floating button and modal",
5
+ "description": "React chat widget for keyring-agent-core floating chatbot UI with AI answers, wallet/token/NFT lookups",
6
6
  "keywords": [
7
7
  "react",
8
8
  "chat",
9
9
  "widget",
10
- "sdk",
11
- "chat-widget"
10
+ "ai-agent",
11
+ "keyring",
12
+ "chatbot"
12
13
  ],
13
- "homepage": "https://bitbucket.org/bacoorteam/keyring-chatbot-agent-sdk#readme",
14
- "bugs": {
15
- "url": "https://bitbucket.org/bacoorteam/keyring-chatbot-agent-sdk/issues"
16
- },
17
- "repository": {
18
- "type": "git",
19
- "url": "git+ssh://git@bitbucket.org/bacoorteam/keyring-chatbot-agent-sdk.git"
20
- },
21
14
  "license": "ISC",
22
- "author": "",
23
15
  "type": "module",
24
16
  "exports": {
25
17
  ".": {
@@ -28,43 +20,38 @@
28
20
  "require": "./dist/chat-widget.umd.js",
29
21
  "default": "./dist/chat-widget.es.js"
30
22
  },
31
- "./web-component": {
32
- "import": "./dist/chat-widget-wc.es.js",
33
- "require": "./dist/chat-widget-wc.umd.js",
34
- "default": "./dist/chat-widget-wc.es.js"
35
- },
36
23
  "./package.json": "./package.json"
37
24
  },
38
25
  "main": "./dist/chat-widget.umd.js",
26
+ "module": "./dist/chat-widget.es.js",
39
27
  "types": "./dist/lib.d.ts",
40
28
  "files": [
41
29
  "dist"
42
30
  ],
43
31
  "scripts": {
44
32
  "dev": "vite",
45
- "build": "yarn build:react && yarn build:wc",
46
- "build:react": "tsc -b && vite build --mode development",
47
- "build:wc": "BUILD_TARGET=web-component vite build --mode development",
48
- "build:production": "yarn build:react:production && yarn build:wc:production",
49
- "build:react:production": "tsc -b && vite build",
50
- "build:wc:production": "BUILD_TARGET=web-component vite build",
51
- "watch": "chokidar 'src/**/*.{ts,tsx,css,json}' -c 'yarn build:react'",
52
- "watch:production": "chokidar 'src/**/*.{ts,tsx,css,json}' -c 'yarn build:react:production'",
33
+ "build": "tsc -b && vite build --mode development",
34
+ "build:production": "tsc -b && vite build",
35
+ "watch": "chokidar 'src/**/*.{ts,tsx,css,json}' -c 'yarn build'",
53
36
  "lint": "eslint .",
54
37
  "lint:fix": "eslint . --fix",
55
38
  "format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
56
39
  "preview": "vite preview",
57
- "build:package": "npx tsx build-2-publish.ts",
58
- "publish:package": "npx tsx publish.ts",
59
- "publish:all": "npx tsx publish-all.ts"
40
+ "set-package": "node scripts/set-package.mjs",
41
+ "publish-package": "./scripts/release.sh",
42
+ "release": "./scripts/release.sh",
43
+ "publish-all": "./scripts/publish-all.sh"
60
44
  },
61
45
  "dependencies": {
62
46
  "@solana/web3.js": "^1.98.4",
63
47
  "@types/react-syntax-highlighter": "^15.5.13",
64
48
  "bignumber.js": "^9.3.1",
49
+ "keyring-agent-core": "^0.2.19",
65
50
  "lodash": "^4.17.23",
66
51
  "react-device-detect": "^2.2.3",
52
+ "react-markdown": "^10.1.0",
67
53
  "react-syntax-highlighter": "^16.1.0",
54
+ "remark-breaks": "^4.0.0",
68
55
  "remark-gfm": "^4.0.1",
69
56
  "viem": "^2.45.1"
70
57
  },
@@ -94,10 +81,10 @@
94
81
  "vite-plugin-dts": "^4.5.4"
95
82
  },
96
83
  "peerDependencies": {
84
+ "keyring-agent-core": "^0.1.0",
97
85
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
98
86
  "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
99
87
  },
100
- "module": "./dist/chat-widget.es.js",
101
88
  "sideEffects": [
102
89
  "**/*.css"
103
90
  ],
@@ -1,6 +0,0 @@
1
- {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint",
4
- "esbenp.prettier-vscode"
5
- ]
6
- }