-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·90 lines (90 loc) · 2.47 KB
/
package.json
File metadata and controls
executable file
·90 lines (90 loc) · 2.47 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
{
"version": "1.14.2",
"license": "MIT",
"name": "@100mslive/hms-virtual-background",
"author": "100ms",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"typings": "dist/index.d.ts",
"typesVersions": {
"*": {
"hmsvbplugin": [
"./dist/HMSVBPlugin.d.ts"
],
"hmseffectsplugin": [
"./dist/HMSEffectsPlugin.d.ts"
]
}
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
},
"./hmsvbplugin": {
"import": "./dist/esm/HMSVBPlugin.js",
"require": "./dist/cjs/HMSVBPlugin.js",
"default": "./dist/esm/HMSVBPlugin.js",
"types": "./dist/HMSVBPlugin.d.ts"
},
"./hmseffectsplugin": {
"import": "./dist/esm/HMSEffectsPlugin.js",
"default": "./dist/esm/HMSEffectsPlugin.js",
"require": "./dist/cjs/HMSEffectsPlugin.js",
"types": "./dist/HMSEffectsPlugin.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/100mslive/web-sdks.git",
"directory": "packages/hms-virtual-background"
},
"files": [
"dist",
"src/tflite",
"src/models"
],
"scripts": {
"start": "concurrently \"yarn dev\" \"yarn types\"",
"dev": "node ../../scripts/dev",
"build:only": "node ../../scripts/build",
"build": "yarn build:only && yarn types:build",
"types": "tsc -w",
"types:build": "tsc -p tsconfig.json",
"test": "jest --maxWorkers=1 --passWithNoTests",
"lint": "eslint -c ../../.eslintrc .",
"lint:fix": "yarn lint --fix",
"prepare": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"format": "prettier --write src/**/*.ts"
},
"peerDependencies": {
"@100mslive/hms-video-store": "0.13.2"
},
"devDependencies": {
"@100mslive/hms-video-store": "0.13.2"
},
"dependencies": {
"@mediapipe/selfie_segmentation": "^0.1.1632777926",
"@tensorflow-models/body-segmentation": "^1.0.1",
"@tensorflow/tfjs-backend-webgl": "^3.3.0",
"@tensorflow/tfjs-converter": "^3.19.0",
"@tensorflow/tfjs-core": "^3.19.0",
"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
"@webassemblyjs/wasm-gen": "1.11.1",
"effects-sdk": "3.6.2",
"gifuct-js": "^2.1.2",
"wasm-check": "^2.0.2"
},
"eslintIgnore": [
"tflite.js",
"tflite-simd.js",
"tflite.wasm",
"tflite-simd.wasm",
"defineTFLite.ts",
"importing.test.ts"
]
}