-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.95 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
58
59
60
{
"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/florianrusch/vue3-quagga2.git"
},
"private": false,
"scripts": {
"dev": "vite",
"dev-network": "vite --host",
"build": "run-p build:components build:types",
"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",
"lint:sarif": "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.4",
"webrtc-adapter": "9.0.1"
},
"devDependencies": {
"@babel/types": "^7.23.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^22.5.2",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.50.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.17.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"sass": "^1.68.0",
"typescript": "^4.9.5",
"vite": "^5.4.7",
"vite-plugin-mkcert": "^1.16.0",
"vue": "^3.3.4",
"vue-tsc": "^2.0.19"
},
"files": [
"dist",
"LICENSE"
],
"engines": {
"node": ">= 18.0",
"npm": ">= 7.0"
},
"main": "dist/vue3-quagga2.umd.js",
"module": "dist/vue3-quagga2.es.js",
"types": "dist/types/index.d.ts"
}