-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.13 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.13 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
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
{
"name": "@voicenter-team/opensips-js",
"version": "1.0.133",
"description": "The JS package for opensips",
"default": "src/index.ts",
"jsdelivr": "dist/opensips-js.iife.js",
"main": "dist/opensips-js.cjs.js",
"module": "dist/opensips-js.es.js",
"unpkg": "dist/opensips-js.iife.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"postpublish": "yarn upload-cdn",
"upload-cdn": "yarn build && node scripts/upload-cdn.js",
"build": "cross-env TARGET=lib vite build",
"demo-build": "cross-env TARGET=demo vite build",
"docs-dev": "cd docs && yarn && yarn run dev",
"docs-build": "cd docs && yarn && yarn run build",
"docs-publish": "yarn docs-genereate && node scripts/upload-doc.js",
"docs-genereate": "yarn build && yarn demo-build && cd docs && yarn && yarn run generate && cd ..",
"run-test": "tsx tests2/test.ts",
"ts-check": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore"
},
"engines": {
"node": ">= 16",
"npm": "please-use-yarn",
"yarn": ">= 1.22.4"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/VoicenterTeam/opensips-js.git"
},
"author": "Bohdan Konechnyi",
"license": "ISC",
"bugs": {
"url": "https://github.com/VoicenterTeam/opensips-js/issues"
},
"homepage": "https://github.com/VoicenterTeam/opensips-js#readme",
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/mustache": "^4.2.6",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-vue": "^4.2.3",
"@voicenter-team/aws-uploader": "^1.0.10",
"@voicenter-team/eslint-config-ts": "^1.0.21",
"@voicenter-team/opensips-js-screen-share": "^0.0.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-cli": "^8.0.0",
"eslint": "^8.35.0",
"pre-commit": "^1.2.2",
"process": "^0.11.10",
"regenerator-runtime": "^0.13.11",
"tsc-alias": "^1.8.6",
"tsx": "^4.19.4",
"typescript": "^4.9.5",
"vite": "4.4.11",
"vite-plugin-dts": "3.5.3",
"vite-plugin-singlefile": "^0.13.5",
"vue": "3.2.25"
},
"dependencies": {
"@opentelemetry/auto-instrumentations-node": "^0.59.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.201.1",
"@opentelemetry/exporter-prometheus": "^0.201.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.201.1",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.201.1",
"@opentelemetry/semantic-conventions": "^1.33.0",
"@types/mime": "^3.0.1",
"flat": "^6.0.1",
"axios": "^1.9.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"generate-unique-id": "^2.0.1",
"jssip": "3.10.0",
"konva": "^9.3.16",
"loglevel": "^1.8.1",
"mime": "^3.0.0",
"mustache": "^4.2.0",
"p-iteration": "^1.1.8",
"playwright": "^1.49.1",
"sdp-transform": "2.14.1",
"uuid": "^10.0.0",
"zod": "^3.25.17"
},
"files": [
"dist",
"src/types"
],
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}