simple-support-chat 0.3.2 → 0.4.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.
- package/README.md +197 -3
- package/dist/client/index.cjs +196 -112
- package/dist/client/index.cjs.map +1 -1
- package/dist/client/index.d.cts +76 -27
- package/dist/client/index.d.ts +76 -27
- package/dist/client/index.js +196 -113
- package/dist/client/index.js.map +1 -1
- package/dist/server/index.cjs +203 -7
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.cts +120 -1
- package/dist/server/index.d.ts +120 -1
- package/dist/server/index.js +201 -8
- package/dist/server/index.js.map +1 -1
- package/package.json +87 -87
package/package.json
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "simple-support-chat",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Embeddable chat widget SDK that routes customer messages to Slack threads. Open-source Crisp alternative.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Indigo AI",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/getindigo/support-chat"
|
|
10
|
-
},
|
|
11
|
-
"type": "module",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"import": {
|
|
15
|
-
"types": "./dist/client/index.d.ts",
|
|
16
|
-
"default": "./dist/client/index.js"
|
|
17
|
-
},
|
|
18
|
-
"require": {
|
|
19
|
-
"types": "./dist/client/index.d.cts",
|
|
20
|
-
"default": "./dist/client/index.cjs"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"./server": {
|
|
24
|
-
"import": {
|
|
25
|
-
"types": "./dist/server/index.d.ts",
|
|
26
|
-
"default": "./dist/server/index.js"
|
|
27
|
-
},
|
|
28
|
-
"require": {
|
|
29
|
-
"types": "./dist/server/index.d.cts",
|
|
30
|
-
"default": "./dist/server/index.cjs"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"main": "./dist/client/index.cjs",
|
|
35
|
-
"module": "./dist/client/index.js",
|
|
36
|
-
"types": "./dist/client/index.d.ts",
|
|
37
|
-
"files": [
|
|
38
|
-
"dist",
|
|
39
|
-
"README.md",
|
|
40
|
-
"LICENSE"
|
|
41
|
-
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "tsup",
|
|
44
|
-
"dev": "tsup --watch",
|
|
45
|
-
"typecheck": "tsc --noEmit",
|
|
46
|
-
"lint": "eslint src/",
|
|
47
|
-
"lint:fix": "eslint src/ --fix",
|
|
48
|
-
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
49
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
50
|
-
"test": "vitest run",
|
|
51
|
-
"test:watch": "vitest"
|
|
52
|
-
},
|
|
53
|
-
"peerDependencies": {
|
|
54
|
-
"react": ">=18.0.0",
|
|
55
|
-
"react-dom": ">=18.0.0"
|
|
56
|
-
},
|
|
57
|
-
"peerDependenciesMeta": {
|
|
58
|
-
"react": {
|
|
59
|
-
"optional": true
|
|
60
|
-
},
|
|
61
|
-
"react-dom": {
|
|
62
|
-
"optional": true
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"@slack/web-api": "^7.8.0",
|
|
67
|
-
"gemoji": "^8.1.0"
|
|
68
|
-
},
|
|
69
|
-
"devDependencies": {
|
|
70
|
-
"@testing-library/jest-dom": "^6.6.3",
|
|
71
|
-
"@testing-library/react": "^16.1.0",
|
|
72
|
-
"@types/node": "^25.3.0",
|
|
73
|
-
"@types/react": "^19.0.0",
|
|
74
|
-
"@types/react-dom": "^19.0.0",
|
|
75
|
-
"eslint": "^9.17.0",
|
|
76
|
-
"eslint-config-prettier": "^10.0.1",
|
|
77
|
-
"globals": "^15.14.0",
|
|
78
|
-
"jsdom": "^26.0.0",
|
|
79
|
-
"prettier": "^3.4.2",
|
|
80
|
-
"react": "^19.0.0",
|
|
81
|
-
"react-dom": "^19.0.0",
|
|
82
|
-
"tsup": "^8.3.5",
|
|
83
|
-
"typescript": "^5.7.2",
|
|
84
|
-
"typescript-eslint": "^8.18.0",
|
|
85
|
-
"vitest": "^3.0.0"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "simple-support-chat",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Embeddable chat widget SDK that routes customer messages to Slack threads. Open-source Crisp alternative.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Indigo AI",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/getindigo/support-chat"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": {
|
|
15
|
+
"types": "./dist/client/index.d.ts",
|
|
16
|
+
"default": "./dist/client/index.js"
|
|
17
|
+
},
|
|
18
|
+
"require": {
|
|
19
|
+
"types": "./dist/client/index.d.cts",
|
|
20
|
+
"default": "./dist/client/index.cjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"./server": {
|
|
24
|
+
"import": {
|
|
25
|
+
"types": "./dist/server/index.d.ts",
|
|
26
|
+
"default": "./dist/server/index.js"
|
|
27
|
+
},
|
|
28
|
+
"require": {
|
|
29
|
+
"types": "./dist/server/index.d.cts",
|
|
30
|
+
"default": "./dist/server/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"main": "./dist/client/index.cjs",
|
|
35
|
+
"module": "./dist/client/index.js",
|
|
36
|
+
"types": "./dist/client/index.d.ts",
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup",
|
|
44
|
+
"dev": "tsup --watch",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"lint": "eslint src/",
|
|
47
|
+
"lint:fix": "eslint src/ --fix",
|
|
48
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
49
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
50
|
+
"test": "vitest run",
|
|
51
|
+
"test:watch": "vitest"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"react": ">=18.0.0",
|
|
55
|
+
"react-dom": ">=18.0.0"
|
|
56
|
+
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"react": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"react-dom": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@slack/web-api": "^7.8.0",
|
|
67
|
+
"gemoji": "^8.1.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
71
|
+
"@testing-library/react": "^16.1.0",
|
|
72
|
+
"@types/node": "^25.3.0",
|
|
73
|
+
"@types/react": "^19.0.0",
|
|
74
|
+
"@types/react-dom": "^19.0.0",
|
|
75
|
+
"eslint": "^9.17.0",
|
|
76
|
+
"eslint-config-prettier": "^10.0.1",
|
|
77
|
+
"globals": "^15.14.0",
|
|
78
|
+
"jsdom": "^26.0.0",
|
|
79
|
+
"prettier": "^3.4.2",
|
|
80
|
+
"react": "^19.0.0",
|
|
81
|
+
"react-dom": "^19.0.0",
|
|
82
|
+
"tsup": "^8.3.5",
|
|
83
|
+
"typescript": "^5.7.2",
|
|
84
|
+
"typescript-eslint": "^8.18.0",
|
|
85
|
+
"vitest": "^3.0.0"
|
|
86
|
+
}
|
|
87
|
+
}
|