-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "posedream",
"version": "1.0.0",
"description": "Chrome YouTube AI pose dream extension",
"main": "src/background.js",
"scripts": {
"copyJS": "cp src/popup.js dist/ && cp src/options.js dist/ && cp src/background.js dist/",
"copyHTML": "cp src/*.html dist/",
"copyManifest": "cp src/manifest.json dist/",
"copyImages": "cp -r src/images dist/",
"copyCSS": "cp src/*.css dist/",
"copy": "npm run copyManifest && npm run copyJS && npm run copyHTML && npm run copyImages && npm run copyCSS",
"build": "parcel build src/content.js -d dist -o content --no-minify && npm run copy"
},
"keywords": [
"Chrome",
"extension",
"AI",
"pose",
"pose tracking",
"tracking",
"dream",
"style",
"styleGAN",
"tensorflow",
"tf",
"tfjs"
],
"author": "Mario M.",
"license": "MIT",
"dependencies": {
"@tensorflow-models/pose-detection": "^0.0.5",
"@tensorflow/tfjs-converter": "^3.8.0",
"@tensorflow/tfjs-core": "^3.8.0",
"proton-engine": "^4.2.1",
"regenerator-runtime": "^0.13.9"
}
}