-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "retinaface-wasm",
"version": "0.2.5",
"description": "Running the Retinaface face recognition algorithm in browser or wechat mini program.",
"main": "dist/index.js",
"type": "module",
"typings": "dist/index.d.ts",
"scripts": {
"start": "vite",
"test": "eslint src --ext .ts",
"build": "tsc",
"copy": "(rm -r wasm || true) && mkdir wasm && cp cmake-build-release_basic/retinaface-basic.wasm cmake-build-release_chrome57/retinaface-chrome57.wasm cmake-build-release_simd/retinaface-simd.wasm wasm/",
"prepare": "tsc && npm run files-size",
"files-size": "node generate-files-size.js",
"generate-headers": "node generate-headers.js"
},
"files": [
"dist",
"wasm",
"models",
"files-size.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ShirasawaSama/retinaface-wasm.git"
},
"keywords": [
"retinaface",
"face-detection",
"face-recognition",
"face-detect",
"face-detector",
"wasm",
"ai",
"wechat",
"mini-program",
"wechat-mini-program",
"ncnn",
"webassembly"
],
"author": "Shirasawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShirasawaSama/retinaface-wasm/issues"
},
"homepage": "https://github.com/ShirasawaSama/retinaface-wasm#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.3.3",
"vite": "^5.1.4"
}
}