-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.6 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
{
"name": "toky-phone-js-sdk",
"version": "0.7.10",
"description": "Toky Phone JS SDK v1",
"main": "./dist/toky-sdk-alpha.js",
"module": "./dist/toky-sdk-alpha.js",
"types": "./dist/types/src/index.d.ts",
"files": [
"dist"
],
"author": "Toky Team",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"webpack": "./node_modules/webpack/bin/webpack.js",
"serve": "npx webpack serve",
"debug": "node --inspect --inspect-brk ./node_modules/webpack/bin/webpack.js",
"build": "npm run webpack -- --mode production",
"dev": "npm run serve -- --mode development",
"build:dev": "npm run webpack -- --mode development",
"build:staging": "npm run webpack -- --mode staging",
"build:types": "tsc --emitDeclarationOnly",
"prod:debug": "npm run debug -- --mode production",
"dev:debug": "npm run debug -- --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
},
"license": "ISC",
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix"
]
},
"browserslist": [
"last 2 Chrome versions"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/events": "^3.0.0",
"@types/node": "^18.13.0",
"@types/pusher-js": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^39.8.0",
"eslint-plugin-prettier": "^4.2.1",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.3",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"keywords": [
"toky-sdk",
"javascript"
],
"dependencies": {
"axios": "^1.3.2",
"pusher-js": "^4.4.0",
"sip.js": "^0.16.1"
}
}