-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"name": "imkh.dev",
"private": true,
"author": {
"email": "vue2598@gmail.com",
"name": "n2ptune"
},
"repository": {
"type": "git",
"url": "https://github.com/n2ptune/imkh.dev.git"
},
"main": "src/main.js",
"description": "Personal blog",
"license": "MIT",
"version": "3.0.0",
"scripts": {
"format": "prettier --config ./.prettierrc --write **/*.{vue,js,css,html,md}",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"newcontent": "ts-node -P scripts/tsconfig.json scripts/add_post",
"readme": "ts-node -P scripts/tsconfig.json scripts/readme"
},
"devDependencies": {
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.6",
"@iconify-json/akar-icons": "^1.2.2",
"@iconify-json/material-symbols": "^1.2.19",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/solar": "^1.2.2",
"@iconify-json/tabler": "^1.2.17",
"@nuxt/content": "^3.4.0",
"@nuxt/icon": "^1.12.0",
"@nuxt/scripts": "^0.11.6",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/robots": "^5.2.10",
"@nuxtjs/sitemap": "^7.2.10",
"@tailwindcss/typography": "^0.5.16",
"@types/glob": "^8.0.0",
"@types/js-yaml": "^4.0.9",
"@unhead/vue": "^2.0.8",
"@vueuse/core": "^13.1.0",
"@vueuse/nuxt": "^13.1.0",
"codemirror": "^6.0.1",
"front-matter": "^4.0.2",
"glob": "^11.0.2",
"inquirer": "^12.5.2",
"js-yaml": "^4.1.0",
"nuxt": "^3.17.5",
"nuxt-svgo": "^4.0.2",
"prettier": "^3.5.2",
"sitemap": "^7.1.1",
"tailwind-scrollbar": "^4.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@nuxt/ui": "^3.0.2",
"@pinia/nuxt": "^0.10.1",
"@tailwindcss/vite": "^4.1.4",
"better-sqlite3": "^12.8.0",
"dayjs": "^1.11.8",
"fuse.js": "^7.1.0",
"motion-v": "^1.0.0-beta.2",
"pinia": "^3.0.1",
"tailwindcss": "^4.1.4"
},
"overrides": {
"vue": "latest"
}
}