forked from florianrusch/vue3-quagga2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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": "vue3-quagga2",
"description": "Vue 3 wrapper for ericblade/quagga2",
"version": "0.0.0",
"homepage": "https://github.com/florianrusch/vue3-quagga2",
"bugs": "https://github.com/florianrusch/vue3-quagga2/issues",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/harry-73/vue3-quagga2.git"
},
"private": false,
"scripts": {
"dev": "vite",
"dev-network": "vite --host",
"build": "run-p build:components build:types",
"prepare": "npm run build",
"build:components": "vite build",
"build:types": "vue-tsc --project tsconfig.build-types.json --declaration --emitDeclarationOnly --outDir dist/types ",
"typecheck": "vue-tsc --project tsconfig.build-types.json --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --fix"
},
"dependencies": {
"@ericblade/quagga2": "1.8.1",
"webrtc-adapter": "8.2.2"
},
"devDependencies": {
"@babel/types": "^7.23.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.8.2",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.50.0",
"eslint-plugin-vue": "^9.17.0",
"node": "^21.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"sass": "^1.68.0",
"typescript": "^4.9.5",
"vite": "^4.4.10",
"vite-plugin-mkcert": "^1.16.0",
"vue": "^3.3.4",
"vue-tsc": "^1.8.15"
},
"files": [
"dist",
"LICENSE"
],
"main": "dist/vue3-quagga2.umd.js",
"module": "dist/vue3-quagga2.es.js",
"types": "dist/types/index.d.ts"
}