-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.41 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.41 KB
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
{
"name": "bleedy",
"version": "0.0.1",
"private": false,
"type": "module",
"packageManager": "npm@11.0.0+sha512.11dff29565d2297c74e7c594a9762581bde969f0aa5cbe6f5b3644bf008a16c065ece61094d9ffbb81125be38df8e1ba43eb8244b3d30c61eb797e9a2440e3ec",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"qa": "node ./scripts/agent-check.mjs",
"qa:with-typecheck": "node ./scripts/agent-check.mjs --with-typecheck",
"prepare": "husky install || true"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@types/file-saver": "^2.0.7",
"doodle.css": "^0.0.2",
"element-plus": "^2.11.4",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"paper-css": "^0.4.1",
"pinia": "^2.3.0",
"roughjs": "^4.6.6",
"unplugin-icons": "^0.22.0",
"vue": "^3.5.22",
"vue-router": "^4.5.1",
"vue3-image-preview": "^0.2.7",
"vuedraggable": "^4.1.0",
"wired-elements": "^3.0.0-rc.6"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"sass-embedded": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"typescript": "~5.7.2",
"unplugin-auto-import": "^0.19.0",
"unplugin-element-plus": "^0.10.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.6",
"vite-plugin-vue-devtools": "^7.6.8",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"npm": {
"patchedDependencies": {
"roughjs@4.6.6": "patches/roughjs@4.6.6.patch",
"wired-elements@3.0.0-rc.6": "patches/wired-elements@3.0.0-rc.6.patch"
}
}
}