-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.54 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
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": "koel",
"author": "Phan An <me@phanan.net>",
"homepage": "https://koel.dev",
"license": "MIT",
"description": "A personal music streaming server that works",
"keywords": [
"music",
"audio",
"stream"
],
"repository": {
"type": "git",
"url": "https://github.com/koel/koel"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@laravel/echo-vue": "^2.1.6",
"butterchurn": "^2.6.7",
"butterchurn-presets": "^2.4.7",
"color": "^5.0.2",
"compare-versions": "^3.6.0",
"dompurify": "^3.3.2",
"events": "^3.3.0",
"fuse.js": "^7.1.0",
"idb": "^8.0.3",
"ismobilejs": "^0.4.1",
"ky": "^1.14.3",
"local-storage": "^2.0.0",
"lodash": "^4.18.1",
"lodash-es": "^4.17.23",
"lucide-vue-next": "^0.452.0",
"marked": "^17.0.4",
"md5": "^2.3.0",
"nouislider": "^14.7.0",
"nprogress": "^0.2.0",
"qrcode": "^1.5.4",
"select": "^1.1.2",
"sketch-js": "^1.1.3",
"style-observer": "^0.1.2",
"three": "^0.146.0",
"tiny-typed-emitter": "^2.1.0",
"vue": "^3.5.29",
"vue-advanced-cropper": "^2.8.9",
"youtube-player": "^5.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@faker-js/faker": "^9.8.0",
"@floating-ui/dom": "^1.7.2",
"@testing-library/user-event": "^14.6.1",
"@testing-library/vue": "^6.6.1",
"@types/local-storage": "^1.4.0",
"@types/lodash": "^4.17.19",
"@types/lodash-es": "^4.17.12",
"@types/md5": "^2.3.6",
"@types/nprogress": "^0.2.3",
"@types/pusher-js": "^4.2.2",
"@types/three": "^0.144.0",
"@types/youtube-player": "^5.5.11",
"@vitejs/plugin-vue": "^6.0.4",
"@vueuse/components": "^13.4.0",
"@vueuse/core": "^13.4.0",
"@vueuse/integrations": "^13.4.0",
"autoprefixer": "^10.4.21",
"factoria": "^4.0.1",
"fake-indexeddb": "^6.2.5",
"jest-serializer-vue": "^2.0.2",
"jsdom": "^26.1.0",
"laravel-echo": "^2.1.6",
"laravel-vite-plugin": "^2.1.0",
"postcss": "^8.5.8",
"postcss-mixins": "^10.0.1",
"postcss-nested": "^6.2.0",
"pusher-js": "^4.4.0",
"rollup-plugin-visualizer": "^6.0.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.11",
"vite-plus": "^0.1.11",
"vitepress": "^1.6.3",
"vitepress-plugin-llms": "^1.11.0",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.11",
"vue-tsc": "^3.2.5"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"check": "vp check resources/assets",
"check:fix": "vp check --fix resources/assets",
"test": "vp test",
"test:unit": "vp test",
"build:sw": "vp build --config vite.config.sw.js",
"build": "vp build && pnpm run build:sw",
"dev": "node -e \"console.warn('Command \\\"pnpm dev\\\" has been removed. Use \\\"composer dev\\\" instead.')\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "vp config"
},
"type": "module",
"pnpm": {
"overrides": {
"form-data@<2.5.4": ">=2.5.4",
"@rolldown/pluginutils": "1.0.0-rc.9",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.11",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.11"
}
},
"packageManager": "pnpm@10.32.1"
}