@techsee/techsee-media-service 25.7.0 → 25.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +103 -103
package/package.json
CHANGED
|
@@ -1,105 +1,105 @@
|
|
|
1
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
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
2
|
+
"name": "@techsee/techsee-media-service",
|
|
3
|
+
"version": "25.8.0",
|
|
4
|
+
"description": "Techsee Media Service",
|
|
5
|
+
"author": "TechSee",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"prepublishOnly": "npm run build",
|
|
10
|
+
"postpublish": "npm run clean",
|
|
11
|
+
"build": "npm run build-ts",
|
|
12
|
+
"build-ts": "npm run copy-dts && tsc",
|
|
13
|
+
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib",
|
|
14
|
+
"clean": "rm -rf lib",
|
|
15
|
+
"lint": "run-s lint:*",
|
|
16
|
+
"lint:prettier": "prettier --check \"./**/*.{js?(x),ts?(x),json,scss,md}\"",
|
|
17
|
+
"lint:eslint": "eslint \"./**/*.{js?(x),ts?(x)}\"",
|
|
18
|
+
"lint-staged": "lint-staged",
|
|
19
|
+
"lint-fix": "run-s lint-fix:*",
|
|
20
|
+
"lint-fix:prettier": "prettier --write \"./**/*.{js?(x),ts?(x),json,scss,md}\"",
|
|
21
|
+
"lint-fix:eslint": "eslint --fix --color \"./**/*.{js?(x),ts?(x)}\"",
|
|
22
|
+
"lint-test": "./node_modules/.bin/eslint . --fix-dry-run",
|
|
23
|
+
"tag": "git tag v$npm_package_version -f | git push -f --tags",
|
|
24
|
+
"test": "jest --config=./jest.config.js",
|
|
25
|
+
"demo": "start-storybook -p 9003 -c .storybook -s ./ && open http://localhost:9003/",
|
|
26
|
+
"demo-build": "build-storybook -c .storybook -o demo-dist"
|
|
27
|
+
},
|
|
28
|
+
"lint-staged": {
|
|
29
|
+
"./**/*.{js?(x),ts?(x),json,scss,md}": "prettier --write",
|
|
30
|
+
"./**/*.{js?(x),ts?(x)}": "eslint --fix --color"
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/TechSeeDev/techsee-common-packages.git",
|
|
35
|
+
"directory": "packages/techsee-media-service"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@techsee/techsee-common": "^14.17.0",
|
|
39
|
+
"bluebird": "^3.7.2",
|
|
40
|
+
"lodash": "^4.17.21",
|
|
41
|
+
"socket.io-client": "2.1.1",
|
|
42
|
+
"webrtc-adapter": "7.7.1"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@storybook/addon-actions": "~5.3.21",
|
|
46
|
+
"@storybook/addon-info": "~5.3.21",
|
|
47
|
+
"@storybook/addon-knobs": "~5.3.21",
|
|
48
|
+
"@storybook/addon-options": "~5.3.21",
|
|
49
|
+
"@storybook/addon-storysource": "~5.3.21",
|
|
50
|
+
"@storybook/addon-viewport": "~5.3.21",
|
|
51
|
+
"@storybook/react": "~5.3.21",
|
|
52
|
+
"@types/bluebird": "^3.5.42",
|
|
53
|
+
"@types/jest": "^29.5.14",
|
|
54
|
+
"@types/lodash": "^4.17.14",
|
|
55
|
+
"@types/node": "^20.14.14",
|
|
56
|
+
"@types/react": "~17.0.50",
|
|
57
|
+
"@types/socket.io-client": "~1.4.32",
|
|
58
|
+
"@types/storybook__addon-actions": "~5.2.1",
|
|
59
|
+
"@types/storybook__react": "~5.2.1",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
|
61
|
+
"@typescript-eslint/parser": "^8.19.1",
|
|
62
|
+
"babel-loader": "~8.2.5",
|
|
63
|
+
"copyfiles": "^2.4.1",
|
|
64
|
+
"eslint": "^9.17.0",
|
|
65
|
+
"eslint-config-prettier": "^9.1.0",
|
|
66
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
67
|
+
"eslint-plugin-import": "^2.31.0",
|
|
68
|
+
"eslint-plugin-jest": "^28.10.0",
|
|
69
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
70
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
71
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
72
|
+
"eslint-plugin-react": "^7.37.3",
|
|
73
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
74
|
+
"globals": "^15.14.0",
|
|
75
|
+
"husky": "^9.1.7",
|
|
76
|
+
"jest": "^29.7.0",
|
|
77
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
78
|
+
"lint-staged": "^15.3.0",
|
|
79
|
+
"merge-stream": "~1.0.1",
|
|
80
|
+
"npm-run-all": "^4.1.5",
|
|
81
|
+
"prettier": "^3.4.2",
|
|
82
|
+
"react": "17.0.1",
|
|
83
|
+
"react-dom": "17.0.1",
|
|
84
|
+
"socket.io": "~2.2.0",
|
|
85
|
+
"ts-jest": "^29.2.5",
|
|
86
|
+
"ts-loader": "^9.5.1",
|
|
87
|
+
"typescript": "^4.9.5"
|
|
88
|
+
},
|
|
89
|
+
"overrides": {
|
|
90
|
+
"@reach/router@1.3.4": {
|
|
91
|
+
"react": "17.0.1",
|
|
92
|
+
"react-dom": "17.0.1"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"husky": {
|
|
96
|
+
"hooks": {
|
|
97
|
+
"pre-commit": "npm run lint-staged",
|
|
98
|
+
"pre-push": "npm run lint && npm test"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"files": [
|
|
102
|
+
"/lib/**/*"
|
|
103
|
+
],
|
|
104
|
+
"gitHead": "314e9ccc2e2c3a30c8e5db0358ff9b778ce4af95"
|
|
105
105
|
}
|