-
-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.8 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.8 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "npmx",
"license": "MIT",
"private": true,
"type": "module",
"author": {
"name": "Daniel Roe",
"email": "daniel@roe.dev",
"url": "https://roe.dev"
},
"scripts": {
"build": "nuxt build",
"build:lunaria": "node --experimental-transform-types ./lunaria/lunaria.ts",
"dev": "nuxt dev",
"dev:docs": "pnpm run --filter npmx-docs dev --port=3001",
"knip": "knip",
"knip:fix": "knip --fix",
"knip:production": "knip --production",
"lint": "vite lint && vite fmt --check",
"lint:fix": "vite lint --fix && vite fmt",
"generate": "nuxt generate",
"npmx-connector": "pnpm --filter npmx-connector dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && simple-git-hooks && pnpm generate:lexicons",
"generate:lexicons": "lex build --lexicons lexicons --out shared/types/lexicons --clear",
"test": "vite test",
"test:browser": "playwright test",
"test:browser:ui": "playwright test --ui",
"test:browser:update": "playwright test --update-snapshots",
"test:nuxt": "vite test --project nuxt",
"test:types": "nuxt prepare && vue-tsc -b --noEmit && pnpm --filter npmx-connector test:types",
"test:unit": "vite test --project unit"
},
"dependencies": {
"@atproto/lex": "0.0.13",
"@deno/doc": "jsr:^0.189.1",
"@iconify-json/simple-icons": "1.2.68",
"@iconify-json/vscode-icons": "1.2.40",
"@intlify/core-base": "11.2.8",
"@intlify/shared": "11.2.8",
"@lunariajs/core": "https://pkg.pr.new/lunariajs/lunaria/@lunariajs/core@f07e1a3",
"@nuxt/a11y": "1.0.0-alpha.1",
"@nuxt/fonts": "0.13.0",
"@nuxt/scripts": "0.13.2",
"@nuxtjs/color-mode": "4.0.0",
"@nuxtjs/html-validator": "2.1.0",
"@nuxtjs/i18n": "10.2.1",
"@shikijs/langs": "3.21.0",
"@shikijs/themes": "3.21.0",
"@vueuse/core": "14.1.0",
"@vueuse/nuxt": "14.1.0",
"module-replacements": "2.11.0",
"nuxt": "4.3.0",
"nuxt-og-image": "5.1.13",
"ohash": "2.0.11",
"perfect-debounce": "2.1.0",
"sanitize-html": "2.17.0",
"semver": "7.7.3",
"shiki": "3.21.0",
"ufo": "1.6.3",
"valibot": "1.2.0",
"validate-npm-package-name": "7.0.2",
"virtua": "0.48.5",
"vue": "3.5.27",
"vue-data-ui": "3.13.7"
},
"devDependencies": {
"@iconify-json/carbon": "1.2.18",
"@iconify-json/lucide": "1.2.87",
"@iconify-json/solar": "1.2.5",
"@iconify-json/svg-spinners": "1.2.4",
"@npm/types": "2.1.0",
"@nuxt/test-utils": "https://pkg.pr.new/@nuxt/test-utils@1499a48",
"@playwright/test": "1.58.0",
"@types/sanitize-html": "2.16.0",
"@types/semver": "7.7.1",
"@types/validate-npm-package-name": "4.0.2",
"@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",
"@voidzero-dev/vite-plus-core": "0.0.0-833c515fa25cef20905a7f9affb156dfa6f151ab",
"@vue/test-utils": "2.4.6",
"axe-core": "4.11.1",
"happy-dom": "20.4.0",
"knip": "5.82.1",
"lint-staged": "16.2.7",
"marked": "17.0.1",
"playwright-core": "1.58.0",
"simple-git-hooks": "2.13.1",
"spdx-license-list": "6.11.0",
"std-env": "3.10.0",
"typescript": "5.9.3",
"unocss": "66.6.0",
"unplugin-vue-router": "0.19.2",
"vite-plus": "0.0.0-833c515fa25cef20905a7f9affb156dfa6f151ab",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.0.0-833c515fa25cef20905a7f9affb156dfa6f151ab",
"vitest-environment-nuxt": "1.0.1",
"vue-tsc": "3.2.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,vue}": [
"vite lint --fix"
],
"*.{js,ts,mjs,cjs,vue,json,yml,md,html,css}": [
"vite fmt"
]
},
"packageManager": "pnpm@10.28.2"
}