-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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
{
"name": "@januscaler/core-januscaler-js",
"version": "1.0.0",
"description": "A core js library implementing only core apis of januscaler without webrtc",
"keywords": [
"januscaler",
"webrtc",
"engine"
],
"license": "MIT",
"author": "shivanshtalwar0 <shivanshtalwar0@gmail.com>",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/esm/index.mjs"
}
},
"typings": "dist/index.d.ts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && npm run build:js",
"build:js": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/januscaler/core-januscaler-js.git"
},
"bugs": {
"url": "https://github.com/januscaler/core-januscaler-js/issues"
},
"publishConfig": {
"@januscaler:registry": "https://registry.npmjs.org"
},
"dependencies": {
"@types/lodash": "4.17.7",
"@types/uuid": "10.0.0",
"aigle": "1.14.1",
"ioredis": "5.3.2",
"lodash": "4.17.21",
"rxjs": "7.5.7",
"uuid": "10.0.0"
},
"devDependencies": {
"@rollup/plugin-eslint": "9.0.5",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-typescript": "11.1.6",
"@types/jest": "29.4.0",
"@types/node": "20.6.0",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"ava": "6.1.3",
"esbuild": "0.23.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"jest": "29.4.1",
"nodemon": "3.1.4",
"pkg": "5.8.1",
"prettier": "2.8.8",
"rimraf": "5.0.8",
"rollup": "4.18.1",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-node-externals": "7.1.2",
"rollup-plugin-typescript-paths": "1.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.2",
"tslib": "2.5.0",
"typescript": "4.8.4"
}
}