bibot 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "bibot",
3
+ "version": "1.0.0",
4
+ "description": "BiBot chat bubble integration point",
5
+ "main": "index.tsx",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "bibot"
11
+ ],
12
+ "author": "CloudSec LLC",
13
+ "license": "ISC",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/chrisdjin/bibot_plugin.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/chrisdjin/bibot_plugin/issues"
20
+ },
21
+ "homepage": "https://github.com/chrisdjin/bibot_plugin#readme",
22
+ "dependencies": {
23
+ "react": "^18.2.0",
24
+ "react-dom": "^18.2.0"
25
+ },
26
+ "devDependencies": {
27
+ "@types/react": "^18.2.79",
28
+ "@types/react-dom": "^18.2.25"
29
+ }
30
+ }
package/src/App.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import React from 'react'
2
+
3
+ function App () {
4
+ return (
5
+ <div>
6
+ <a>Coming soon</a>
7
+ </div>
8
+ )
9
+ }
10
+
11
+ export default App
package/src/index.tsx ADDED
@@ -0,0 +1,11 @@
1
+ import ReactDOM from 'react-dom/client'
2
+ import App from './App'
3
+ import React from 'react'
4
+ const root = ReactDOM.createRoot(
5
+ document.getElementById('root') as HTMLElement
6
+ )
7
+ root.render(
8
+ <React.StrictMode>
9
+ <App />
10
+ </React.StrictMode>
11
+ )