-
-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.38 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.38 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
{
"name": "npmx",
"license": "MIT",
"private": true,
"type": "module",
"author": {
"name": "Daniel Roe",
"email": "daniel@roe.dev",
"url": "https://roe.dev"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && simple-git-hooks",
"test:types": "vue-tsc -b --noEmit",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:unit": "vitest --project unit",
"test:nuxt": "vitest --project nuxt",
"test:browser": "playwright test",
"test:browser:ui": "playwright test --ui",
"test:browser:update": "playwright test --update-snapshots"
},
"dependencies": {
"@iconify-json/vscode-icons": "^1.2.40",
"@nuxt/eslint": "^1.12.1",
"@nuxt/fonts": "^0.13.0",
"@nuxt/scripts": "^0.13.2",
"@nuxtjs/html-validator": "^2.1.0",
"@shikijs/langs": "^3.21.0",
"@shikijs/themes": "^3.21.0",
"@vueuse/core": "^14.1.0",
"@vueuse/nuxt": "14.1.0",
"nuxt": "^4.3.0",
"nuxt-og-image": "^5.1.13",
"perfect-debounce": "^2.1.0",
"sanitize-html": "^2.17.0",
"shiki": "^3.21.0",
"ufo": "^1.6.3",
"unplugin-vue-router": "^0.19.2",
"vue": "3.5.27"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.18",
"@iconify-json/solar": "^1.2.5",
"@npm/types": "^2.1.0",
"@nuxt/test-utils": "3.23.0",
"@playwright/test": "1.57.0",
"@types/sanitize-html": "^2.16.0",
"@unocss/nuxt": "^66.6.0",
"@unocss/preset-wind4": "^66.6.0",
"@vite-pwa/assets-generator": "^1.0.2",
"@vite-pwa/nuxt": "^1.1.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "2.4.6",
"eslint": "9.39.2",
"happy-dom": "20.3.5",
"lint-staged": "16.2.7",
"marked": "^17.0.1",
"playwright-core": "^1.57.0",
"simple-git-hooks": "2.13.1",
"std-env": "^3.10.0",
"typescript": "5.9.3",
"unocss": "^66.6.0",
"vitest": "^4.0.18",
"vue-tsc": "3.2.2"
},
"pnpm": {
"packageExtensions": {
"@nuxt/scripts": {
"dependencies": {
"estree-walker": "^3.0.3"
}
}
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"packageManager": "pnpm@10.28.1"
}