-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.01 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tfjs-yolov8",
"description": "Using YOLOv8 and Tensorflow.js",
"version": "0.1.0",
"author": "webees",
"license": "MIT",
"keywords": [
"yolov8",
"vant",
"tensorflow.js"
],
"homepage": "https://github.com/webees/tfjs-yolov8#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webees/tfjs-yolov8.git"
},
"bugs": {
"url": "https://github.com/webees/tfjs-yolov8/issues"
},
"scripts": {
"git": "npx [email protected]",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"taze": "npx taze",
"ubd": "npx update-browserslist-db@latest"
},
"dependencies": {
"@tensorflow/tfjs": "^4.11.0",
"@tensorflow/tfjs-backend-webgl": "^4.11.0",
"@tensorflow/tfjs-backend-webgpu": "^4.11.0",
"axios": "^1.5.0",
"core-js": "^3.32.2",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"register-service-worker": "^1.7.2",
"vant": "^4.6.8",
"vue": "^3.3.4",
"vue-i18n": "^9.4.1",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-pwa": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"less": "^4.2.0",
"less-loader": "^8.1.1",
"lint-staged": "^11.2.6",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.8.8",
"typescript": "~4.9.5",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}