-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.09 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
{
"name": "perfectwall",
"version": "1.1.0",
"description": "Perfect Wallpaper - A Wallpaper Engine project",
"main": "index.html",
"scripts": {
"build": "vue-tsc --noEmit && vite build && node scripts/post-build.js && node scripts/copy-project-json.mjs",
"build:json": "node scripts/copy-project-json.mjs",
"build:watch": "vue-tsc --noEmit && vite build --watch && node scripts/post-build.js",
"build:dev": "node scripts/build-dev.mjs",
"build:dev:watch": "node scripts/watch-dev.mjs",
"build:preview": "node scripts/build-weather-fx-preview.mjs",
"build:server": "powershell -File ./scripts/build-dotnet.ps1",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --check src",
"format:fix": "prettier --write src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"author": "etherfun",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/coverage-v8": "^2.1.0",
"@vue/test-utils": "^2.4.11",
"esbuild": "^0.27.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-vue": "^10.10.0",
"jsdom": "^25.0.0",
"license-checker-rseidelsohn": "^4.4.2",
"prettier": "^3.8.1",
"sass": "^1.77.8",
"tsx": "^4.7.0",
"typescript": "^6.0.2",
"vite": "^5.4.21",
"vitest": "^2.1.0",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^2.2.12",
"wallpaper-engine-web-dev-kit": "^0.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"colorthief": "^3.3.1",
"pinia": "^2.3.1",
"qweather-icons": "^1.8.0",
"raindrop-fx": "^1.0.8",
"reflect-metadata": "^0.2.2",
"vue": "^3.5.38",
"vue-i18n": "^11.4.6"
},
"type": "module"
}