Skip to content

Commit bb7437f

Browse files
committed
add package.json
1 parent cbde424 commit bb7437f

File tree

2 files changed

+108
-0
lines changed

2 files changed

+108
-0
lines changed

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
### OSX template
49+
.DS_Store
50+
.AppleDouble
51+
.LSOverride
52+
53+
# Icon must end with two \r
54+
Icon
55+
56+
# Thumbnails
57+
._*
58+
59+
# Files that might appear in the root of a volume
60+
.DocumentRevisions-V100
61+
.fseventsd
62+
.Spotlight-V100
63+
.TemporaryItems
64+
.Trashes
65+
.VolumeIcon.icns
66+
67+
# Directories potentially created on remote AFP share
68+
.AppleDB
69+
.AppleDesktop
70+
Network Trash Folder
71+
Temporary Items
72+
.apdisk
73+
74+
node_modules
75+
/widget-sample/node_modules
76+
npm-debug.log
77+
venv
78+
.vscode
79+
package-lock.json
80+
live-chat-sample/bower_components
81+
widget-sample/test
82+
nohup.out
83+
lint.txt
84+
.python-version
85+
test/conf/generated/*.js

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "sendbird-desk",
3+
"version": "1.0.2",
4+
"description": "SendBird Desk SDK Integration Guide for JavaScript =========== SendBird Desk is a chat customer service platform built on SendBird SDK and API.",
5+
"main": "SendBird.Desk.min.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/smilefam/SendBird-Desk-SDK-JavaScript.git"
12+
},
13+
"keywords": ["sendbird", "sendbird.com", "messaging", "chat", "js"],
14+
"author": "SendBird <support@sendbird.com>",
15+
"license": "SEE LICENSE IN LICENSE.md",
16+
"bugs": {
17+
"url": "https://github.com/smilefam/SendBird-Desk-SDK-JavaScript/issues"
18+
},
19+
"homepage": "https://sendbird.com",
20+
"dependencies": {
21+
"sendbird": "^3.0.67"
22+
}
23+
}

0 commit comments

Comments
 (0)