@droppii-org/chat-sdk 0.1.7 → 0.1.9

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@droppii-org/chat-sdk",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Droppii React Chat SDK",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -55,15 +55,6 @@
55
55
  "files": [
56
56
  "dist"
57
57
  ],
58
- "scripts": {
59
- "build": "pnpm build:css && tsc -p tsconfig.build.json && pnpm copy-assets",
60
- "build:css": "tailwindcss -i ./src/styles/global.css -o ./dist/styles/global.css --minify",
61
- "dev": "tsc --noEmit --watch",
62
- "lint": "eslint src/",
63
- "type-check": "tsc --noEmit",
64
- "prepublishOnly": "pnpm build",
65
- "copy-assets": "cp -R src/assets dist && cp -R src/locales dist"
66
- },
67
58
  "keywords": [
68
59
  "chat",
69
60
  "sdk",
@@ -120,6 +111,15 @@
120
111
  "@types/node": "^20.0.0",
121
112
  "@types/react": "^18.2.37",
122
113
  "@types/react-dom": "^18.2.15",
114
+ "shx": "^0.4.0",
123
115
  "typescript": "^5.2.2"
116
+ },
117
+ "scripts": {
118
+ "build": "pnpm build:css && tsc -p tsconfig.build.json && pnpm copy-assets",
119
+ "build:css": "tailwindcss -i ./src/styles/global.css -o ./dist/styles/global.css --minify",
120
+ "dev": "tsc --noEmit --watch",
121
+ "lint": "eslint src/",
122
+ "type-check": "tsc --noEmit",
123
+ "copy-assets": "shx cp -r src/assets dist && shx cp -r src/locales dist"
124
124
  }
125
- }
125
+ }