-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.31 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.31 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
{
"name": "personal-homepage-template",
"private": true,
"version": "1.0.0",
"type": "module",
"author": "OLC <utsumabo@ritsukage.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BAKAOLC/PersonalHomePageTemplate.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"ci-build": "cross-env VITE_SKIP_PREBUILD=true vite build",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"prebuild": "npm run images-config:build && npm run articles-config:build && npm run character-profiles-config:build && npm run generate-id-hash-map && npm run generate-thumbnails && npm run generate-feeds",
"generate-id-hash-map": "node scripts/generate-id-hash-map.cjs",
"generate-feeds": "node scripts/generate-feeds.cjs",
"images-config:build": "node scripts/manage-images.cjs build",
"images-config:split": "node scripts/manage-images.cjs split",
"images-config:merge": "node scripts/manage-images.cjs merge",
"images-config:cleanup": "node scripts/manage-images.cjs cleanup",
"articles-config:build": "node scripts/manage-articles.cjs build",
"articles-config:split": "node scripts/manage-articles.cjs split",
"articles-config:merge": "node scripts/manage-articles.cjs merge",
"articles-config:cleanup": "node scripts/manage-articles.cjs cleanup",
"character-profiles-config:build": "node scripts/manage-character-profiles.cjs build",
"character-profiles-config:split": "node scripts/manage-character-profiles.cjs split",
"character-profiles-config:merge": "node scripts/manage-character-profiles.cjs merge",
"character-profiles-config:cleanup": "node scripts/manage-character-profiles.cjs cleanup",
"generate-thumbnails": "node scripts/generate-thumbnails.cjs",
"convert-to-webp": "node scripts/convert-to-webp.cjs",
"cleanup-backups": "node scripts/cleanup-backups.cjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:watch": "eslint --watch ."
},
"dependencies": {
"@giscus/vue": "^3.1.1",
"@ritsukage/audio-loop-player": "^1.0.0",
"@vueuse/core": "^14.1.0",
"@zumer/snapdom": "^2.0.2",
"dayjs": "^1.11.19",
"dompurify": "^3.3.1",
"highlight.js": "^11.11.1",
"lucide-vue-next": "^0.563.0",
"marked": "^17.0.1",
"monaco-editor": "^0.55.1",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.2.0",
"pinia": "^3.0.4",
"pixi-live2d-display": "^0.4.0",
"pixi.js": "^6.5.10",
"vite-plugin-monaco-editor": "^1.1.0",
"vue": "^3.5.27",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.1",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-vue": "^6.0.3",
"autoprefixer": "^10.4.23",
"baseline-browser-mapping": "^2.9.19",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vue": "^10.7.0",
"iconv-lite": "^0.7.2",
"jschardet": "^3.1.4",
"json5": "^2.2.3",
"postcss": "^8.5.6",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.2.4"
}
}