-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.18 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
{
"author": "VD39",
"browserslist": [
"defaults"
],
"bugs": {
"url": "https://github.com/VD39/subsonic-player/issues"
},
"dependencies": {
"@phosphor-icons/vue": "^2.2.1",
"crypto-js": "^4.2.0",
"nuxt": "^4.5.1",
"nuxt-swiper": "^2.0.2",
"vue": "^3.5.42"
},
"description": "A responsive, modern web-based client designed for Subsonic music servers.",
"devDependencies": {
"@csstools/postcss-global-data": "^4.0.0",
"@eslint/compat": "^2.1.0",
"@nuxt/eslint": "^1.16.0",
"@nuxt/test-utils": "^4.2.0",
"@nuxtjs/stylelint-module": "^5.2.1",
"@playwright/test": "^1.62.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^26.4.0",
"@vite-pwa/assets-generator": "^1.0.2",
"@vite-pwa/nuxt": "^1.1.1",
"@vitest/coverage-istanbul": "^4.1.11",
"@vitest/eslint-plugin": "^1.6.27",
"@vue/test-utils": "^2.5.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.10.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0",
"happy-dom": "^20.11.15",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"playwright-core": "^1.62.1",
"postcss": "^8.5.25",
"postcss-custom-media": "^12.0.1",
"postcss-extend-rule": "^4.0.0",
"postcss-html": "^2.0.0",
"postcss-preset-env": "^11.5.0",
"postcss-pxtorem": "^6.1.0",
"postcss-rem": "^3.1.0",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-recess-order": "^7.8.0",
"stylelint-config-recommended-vue": "^2.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.11"
},
"homepage": "https://github.com/VD39/subsonic-player#readme",
"keywords": [
"subsonic",
"music-player",
"nuxt",
"vue",
"pwa"
],
"license": "GPL-3.0",
"name": "subsonic-player",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/VD39/subsonic-player.git"
},
"scripts": {
"build": "nuxt build",
"build:preview": "npm run build && npm run preview",
"check-types": "npm run postinstall && vue-tsc --noEmit",
"clean": "rm -rf .nuxt dist .output node_modules/.vite node_modules/.cache",
"dev": "npm run postinstall && nuxt dev --open",
"generate": "nuxt generate",
"generate:preview-videos": "npm run playwright install && npm run build && playwright test docs/generate-preview-videos.spec.ts",
"lint": "npm run postinstall && npm run lint:scripts && npm run lint:styles",
"lint:fix": "npm run postinstall && npm run lint:scripts:fix && npm run lint:styles:fix",
"lint:scripts": "eslint .",
"lint:scripts:fix": "npm run lint:scripts -- --fix",
"lint:styles": "stylelint --ignore-path .gitignore '**/*.{css,vue}'",
"lint:styles:fix": "npm run lint:styles -- --fix",
"postinstall": "nuxt prepare",
"precommit": "npm run lint:fix && npm run check-types && npm run test -- -u",
"prepare": "husky",
"preview": "nuxt preview",
"test": "vitest",
"test:changed": "vitest --changed",
"test:once": "npm run test -- --run"
},
"type": "module",
"version": "1.0.0"
}