forked from npmx-dev/npmx.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.38 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"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",
"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",
"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/api": "^0.18.17",
"@atproto/oauth-client-node": "^0.3.15",
"@deno/doc": "jsr:^0.189.1",
"@iconify-json/simple-icons": "^1.2.67",
"@iconify-json/vscode-icons": "^1.2.40",
"@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",
"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",
"unplugin-vue-router": "^0.19.2",
"valibot": "^1.2.0",
"validate-npm-package-name": "^7.0.2",
"virtua": "^0.48.3",
"vue": "3.5.27",
"vue-data-ui": "^3.13.5"
},
"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.57.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": "latest",
"@vue/test-utils": "2.4.6",
"axe-core": "^4.11.1",
"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",
"spdx-license-list": "^6.11.0",
"std-env": "3.10.0",
"typescript": "5.9.3",
"unocss": "66.6.0",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest",
"vue-tsc": "3.2.2"
},
"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.1"
}