-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 996 Bytes
/
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
{
"name": "djangoinstant",
"version": "0.5.0",
"description": "Client for the django-instant websockets backend",
"scripts": {
"build": "rm -f dist/* && rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"/dist"
],
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.min.js"
}
},
"dependencies": {
"centrifuge": "^3.0.1"
},
"devDependencies": {
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"rollup": "^2.70.0",
"rollup-plugin-terser": "^7.0.2",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1"
},
"author": "synw",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/synw/djangoinstant"
},
"keywords": [
"websockets",
"centrifugo"
]
}