-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "segmentation-person-media",
"description": "Person segmentation from a media element and manipulate background in the browser",
"version": "0.0.1",
"main": "dist/index.js",
"author": "joe-re <joe.tialtngo@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "yarn demo:build && run-p demo:watch demo:dev-server",
"demo:dev-server": "yarn web-dev-server --open demo/ --node-resolve",
"demo:build": "yarn esbuild ./demo/main.ts --bundle --outfile=demo/out.js",
"demo:watch": "yarn esbuild ./demo/main.ts --bundle --outfile=demo/out.js --watch",
"lint": "yarn eslint . --ext .js,.ts",
"build": "yarn run tsc --declaration ./src/index.ts --outDir dist"
},
"files": [
"package.json",
"dist"
],
"dependencies": {
"@tensorflow-models/body-pix": "^2.0.5",
"@tensorflow/tfjs": "^3.0.0",
"@tensorflow/tfjs-converter": "^3.0.0",
"@tensorflow/tfjs-core": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@web/dev-server": "^0.1.6",
"@web/dev-server-esbuild": "^0.2.11",
"esbuild": "^0.8.42",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
}
}