-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "@telaclaims-tech/softphone",
"version": "0.0.42",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/Softphone/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"/dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:softphone": "vite build --config vite.config.softphone.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"publish-pkg": "npm run build:softphone && npm version patch && git push && npm publish"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.15",
"@mui/system": "^5.15.15",
"@twilio/voice-sdk": "^2.10.2",
"libphonenumber-js": "^1.10.60",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/react": "^17.0.76",
"@types/react-dom": "^17.0.25",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.8.1"
},
"engines": {
"node": ">=16.16.0",
"npm": ">=8.11.0"
}
}