-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 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
{
"name": "@paxapos/av-inputs",
"version": "2.1.2",
"description": "Stencil Component Input webcam",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/av-inputs/av-inputs.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/alevilar/av-inputs"
},
"homepage": "https://github.com/alevilar/av-inputs#readme",
"bugs": {
"url": "https://github.com/alevilar/av-inputs/issues"
},
"keywords": [
"stencil",
"web-components",
"face-detection",
"webcam",
"barcode-scanner",
"mediapipe",
"tensorflow",
"computer-vision"
],
"author": "alevilar",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"build:prod": "stencil build --prod --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"test:ci": "stencil test --spec --e2e --ci",
"type-check": "tsc --noEmit --skipLibCheck",
"lint": "echo 'Linting not configured yet'",
"generate": "stencil generate",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"prepublishOnly": "npm run build:prod && npm test"
},
"dependencies": {
"@mediapipe/tasks-vision": "0.10.21",
"@stencil/core": "4.31.0",
"@zxing/library": "^0.21.3",
"ml-distance-euclidean": "^2.0.0",
"uuid": "11.1.0"
},
"devDependencies": {
"@stencil/angular-output-target": "0.10.2",
"@types/jest": "29.5.14",
"@types/node": "22.15.21",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"puppeteer": "24.9.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^5.9.3"
},
"license": "MIT"
}