-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "@voicenter-team/opensips-js",
"version": "1.0.81",
"description": "The JS package for opensips",
"default": "src/index.ts",
"jsdelivr": "dist/opensips-js.umd.js",
"main": "dist/opensips-js.cjs.js",
"module": "dist/opensips-js.es.js",
"unpkg": "dist/opensips-js.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "cross-env TARGET=lib vite build",
"build-demo": "cross-env TARGET=demo vite build",
"docs-build": "yarn run build-demo && cd docs && yarn && yarn run build",
"test": "echo \"Error: no test specified\" && exit 1",
"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"
},
"precommit": "ts-check, lint",
"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": {
"@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/eslint-config-ts": "^1.0.21",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"pre-commit": "^1.2.2",
"process": "^0.11.10",
"regenerator-runtime": "^0.13.11",
"tsc-alias": "^1.8.6",
"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": {
"@types/mime": "^3.0.1",
"generate-unique-id": "^2.0.1",
"jssip": "3.10.0",
"loglevel": "^1.8.1",
"mime": "^3.0.0",
"p-iteration": "^1.1.8",
"sdp-transform": "2.14.1"
},
"files": [
"dist",
"src/types"
]
}