forked from sendbird/SendBird-Desk-SDK-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "sendbird-desk",
"version": "1.1.1",
"description": "SendBird Desk SDK for JavaScript",
"author": "SendBird",
"license": "see LICENSE.md",
"keywords": [],
"files": [
"dist/**/*",
"LICENSE.md",
"CHANGELOG.md",
"CHANGELOG_old.md",
"README.md"
],
"devEngines": {
"node": "18.x"
},
"main": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean-dist": "rm -rf dist",
"dts": "dts-bundle-generator -o dist/index.d.ts ./src/app.ts",
"build": "npm run clean-dist; rollup --config rollup.config.js; npm run dts; npm run docs",
"docs": "typedoc --tsconfig ./tsconfig.rollup.json --options ./typedoc.config.js",
"format": "prettier ./src/**/*.ts --write",
"format:check": "prettier ./src/**/*.ts --check",
"lint": "eslint -c .eslintrc.js 'src/**'",
"prepare": "husky install",
"test": "jest --config test/jest.config.js"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.19.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^29.5.3",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"dotenv": "^16.3.1",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.44.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jsdom": "^22.1.0",
"prettier": "^1.19.1",
"rollup": "^2.47.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^2.0.1",
"typescript": "^5.1.6",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"@sendbird/chat": "^4.9.6",
"core-js": "^3.8.0"
},
"sendbirdBundler": {
"outDir": "dist",
"entries": {
"index": "src/app.ts"
}
}
}