-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
98 lines (98 loc) · 2.45 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@magicbell/core",
"version": "5.1.0",
"license": "SEE LICENSE IN LICENSE",
"description": "Official MagicBell API wrapper",
"author": "MagicBell <[email protected]> (https://magicbell.com/)",
"contributors": [
"Bilal Budhani <[email protected]>",
"Josue Montano <[email protected]>"
],
"sideEffects": false,
"files": [
"/dist",
"/src",
"LICENSE",
"/MagicBellClient/package.json"
],
"scripts": {
"clean": "rimraf dist",
"build": "run-s clean build:bundle build:node10 build:attw",
"build:bundle": "tshy",
"build:node10": "tsx scripts/fix-node10.ts",
"build:attw": "attw -P",
"start": "tshy --watch",
"report-coverage": "codecov"
},
"devDependencies": {
"@types/faker": "^5.5.9",
"@types/lodash": "^4.14.202",
"@types/rosie": "^0.0.45",
"@types/sinon": "^10.0.20",
"codecov": "^3.8.3",
"faker": "^5.5.3",
"miragejs": "^0.1.48",
"rosie": "^2.1.1",
"sinon": "^13.0.2"
},
"dependencies": {
"ably": "^1.2.48",
"axios": "npm:axios@^0.28.0",
"dayjs": "^1.11.10",
"dompurify": "^3.2.1",
"humps": "^2.0.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"pluralize": "^8.0.0",
"tslib": "^2.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicbell/magicbell-js.git",
"directory": "packages/core"
},
"keywords": [
"bell",
"magicbell",
"notifications",
"notification center",
"notification inbox",
"typescript"
],
"homepage": "https://magicbell.com",
"bugs": {
"url": "https://github.com/magicbell/magicbell-js/issues"
},
"tshy": {
"project": "./tsconfig.build.json",
"exports": "./src/*.ts"
},
"type": "module",
"exports": {
"./MagicBellClient": {
"import": {
"types": "./dist/esm/MagicBellClient.d.ts",
"default": "./dist/esm/MagicBellClient.js"
},
"require": {
"types": "./dist/commonjs/MagicBellClient.d.ts",
"default": "./dist/commonjs/MagicBellClient.js"
}
},
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js"
}