-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.1 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
{
"name": "@channel.io/channel-web-sdk-loader",
"version": "2.0.0",
"description": "Official Channel Web SDK Loader",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.esm.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && mv dist/index.js dist/index.esm.js && mv dist/index.d.ts dist/index.d.mts && cp dist/index.esm.js dist/index.esm.mjs",
"build:cjs": "tsc -p tsconfig.cjs.json && mv dist/index.js dist/index.cjs.js",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git-cz",
"build:typedoc": "typedoc src/index.ts"
},
"files": [
"dist",
"images"
],
"repository": {
"type": "git",
"url": "git+https://github.com/channel-io/channel-web-sdk-loader.git"
},
"keywords": [
"crm",
"customer relationship management",
"channel",
"channel.io",
"channel-talk",
"channeltalk",
"channel talk",
"channel web sdk",
"channel web sdk loader",
"channel js sdk",
"channel javascript sdk",
"channel javascript sdk loader",
"live chat",
"livechat",
"live-chat",
"chatbot",
"chat bot",
"messenger",
"chat application",
"marketing",
"customer support",
"branding",
"chat",
"채널톡",
"채널"
],
"author": "Channel Corp.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/channel-io/channel-web-sdk-loader/issues"
},
"homepage": "https://github.com/channel-io/channel-web-sdk-loader#readme",
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}