forked from ably-labs/ably-chat-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ably-chat-component",
"version": "1.0.7",
"description": "Real time chat from Ably - just add your own API key!",
"main": "build/index.js",
"exports": {
"import": "./build/index.js"
},
"type": "module",
"module": "./build/index.js",
"scripts": {
"prestart": "npm install",
"start": "snowpack dev --watch --polyfill-node",
"build": "npm run ci",
"ci": "npx snowpack build",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ably-labs/ably-chat-component.git"
},
"keywords": [
"chat",
"realtime",
"websockets",
"ably"
],
"author": "Jo Franchetti, Ably",
"license": "ISC",
"bugs": {
"url": "https://github.com/ably-labs/ably-chat-component.git"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"snowpack": "latest",
"typescript": "^4.0.3"
},
"homepage": "https://github.com/thisisjofrank/ablycomponent#readme",
"dependencies": {
"ably": "^1.2.8"
},
"publishConfig": {
"access": "public"
}
}