-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "facemesheditor",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test": "run-s test:*",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.{ts,scss}\" --write",
"fix:lint": "eslint src/ --fix",
"test:lint": "eslint src",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"deploy": "run-s deploy:*",
"deploy:build": "vite build",
"deploy:publish": "gh-pages -d dist -u \"github-actions-bot <[email protected]>\"",
"prepare": "husky"
},
"engines": {
"node": "^18.18.2"
},
"targets": {
"default": {
"includeNodeModules": true
}
},
"browserslist": [
"> 0.5%",
"last 2 versions, not dead"
],
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.14",
"@thumbmarkjs/thumbmarkjs": "^0.16.0",
"bootstrap": "^5.3.3",
"bootstrap-vue-next": "^0.24.10",
"canvas": "^2.11.2",
"jquery": "^3.7.1",
"jssha": "^3.3.1",
"pinia": "^2.1.7",
"sortablejs": "^1.15.3",
"vue": "^3.4.29",
"vue3-shortkey": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@floating-ui/vue": "^1.1.4",
"@playwright/test": "^1.44.1",
"@rushstack/eslint-patch": "^1.8.0",
"@tsconfig/node20": "^20.1.4",
"@types/bootstrap": "^5.2.10",
"@types/jquery": "^3.5.32",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.9",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"cspell": "^8.8.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-loops": "~0.3.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-vue": "^9.29.0",
"gh-pages": "^6.1.1",
"globals": "^15.3.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"node-gyp": "^10.1.0",
"npm-run-all": "^4.1.5",
"npm-run-all2": "^6.2.0",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"sass": "^1.77.6",
"sortablejs-vue3": "^1.2.11",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^8.16.0",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.3.1",
"vitest": "^2.1.3",
"vue-tsc": "^2.0.21"
},
"files": [
"doc",
"src",
"dist",
"static",
"test",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}