-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 922 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 922 Bytes
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
{
"name": "tensorflow-toy",
"version": "1.0.0",
"description": "A demo of using TensorFlow.js to acheive advanced filter effects similar to Snapchat filters.",
"type": "module",
"scripts": {
"build:sass": "sass --watch src/scss:dist/assets/css",
"build:ts": "tsc",
"parcel:watch": "npx parcel watch src/index.html --dist-dir dist",
"parcel:build": "npx parcel build src/index.html --dist-dir dist",
"dev": "npx parcel serve src/index.html --https --dist-dir dist",
"build": "npm run parcel:build"
},
"keywords": [
"tensorflow",
"face landmarks detection",
"face_mesh",
"machine learning",
"ai",
"javascript",
"web development",
"parcel",
"sass",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-sass": "^2.12.0",
"buffer": "^6.0.3",
"process": "^0.11.10"
},
"dependencies": {}
}