-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "@programic/vue-barcode-detector",
"version": "1.0.0",
"description": "A barcode device detector for JavaScript/TypeScript and VueJS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"test": "vitest",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/programic/vue-barcode-detector.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"vue",
"typescript",
"barcodes"
],
"author": "Jesse Koerhuis (https://gitlab.com/jkoerhuis.development)",
"license": "MIT",
"bugs": {
"url": "https://github.com/programic/vue-barcode-detector/issues"
},
"homepage": "https://programic.com",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@programic/eslint-plugin": "^10.1.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vue": "^9.27.0",
"eslit": "^6.0.0",
"globals": "^15.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vitest": "^2.1.5",
"vue": "^3.4.38",
"vue-eslint-parser": "^9.4.3"
},
"peerDependencies": {
"vue": "^3.4.38"
}
}