-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 KB
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
{
"name": "@vodori/chatter",
"version": "0.0.31",
"description": "A gossip protocol implementation for communicating across various browser contexts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"release": "npm run build && npm version patch && npm publish && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vodori/chatter.git"
},
"keywords": [
"gossip",
"protocol",
"browser",
"extension",
"messaging"
],
"author": "paul.rutledge@vodori.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/vodori/chatter/issues`"
},
"homepage": "https://github.com/vodori/chatter#readme",
"dependencies": {
"dijkstrajs": "1.0.3",
"rxjs": "7.8.1"
},
"devDependencies": {
"@types/chrome": "0.0.246",
"@types/jest": "29.5.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
}
}