-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
118 lines (118 loc) · 3.5 KB
/
package.json
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
116
117
118
{
"name": "@nuxt/fonts",
"version": "0.10.3",
"description": "Automatic font configuration for Nuxt apps",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/fonts.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/module.mjs",
"./utils": "./dist/utils.mjs"
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/module.d.mts"
],
"utils": [
"./dist/utils.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build && pnpm client:build",
"prepack": "pnpm build",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"dev": "nuxi dev playgrounds/basic",
"dev:scss": "nuxi dev playgrounds/scss",
"dev:tailwind@3": "nuxi dev playgrounds/tailwindcss@3",
"dev:tailwind@4": "nuxi dev playgrounds/tailwindcss@4",
"dev:unocss": "nuxi dev playgrounds/unocss",
"dev:build": "nuxi build playgrounds/basic",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare client && nuxi prepare playgrounds/basic && nuxi prepare playgrounds/scss && nuxi prepare playgrounds/tailwindcss@3 && nuxi prepare playgrounds/tailwindcss@4 && nuxi prepare playgrounds/unocss",
"release": "pnpm lint && pnpm test && pnpm prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run --coverage",
"test:types": "vue-tsc --noEmit && pnpm -r test:types",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/devtools-kit": "^2.0.0",
"@nuxt/kit": "^3.15.4",
"consola": "^3.4.0",
"css-tree": "^3.1.0",
"defu": "^6.1.4",
"esbuild": "^0.25.0",
"fontaine": "^0.5.0",
"h3": "^1.15.0",
"jiti": "^2.4.2",
"magic-regexp": "^0.8.0",
"magic-string": "^0.30.17",
"node-fetch-native": "^1.6.6",
"ohash": "^1.1.4",
"pathe": "^2.0.3",
"sirv": "^3.0.0",
"tinyglobby": "^0.2.10",
"ufo": "^1.5.4",
"unifont": "^0.1.7",
"unplugin": "^2.2.0",
"unstorage": "^1.14.4"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.6",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^1.0.1",
"@nuxt/module-builder": "^1.0.0-alpha.1",
"@nuxt/schema": "^3.15.4",
"@nuxt/test-utils": "^3.15.4",
"@types/css-tree": "^2.3.10",
"@types/node": "^22.13.1",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^3.0.5",
"birpc": "^2.2.0",
"changelogen": "^0.5.7",
"eslint": "^9.20.1",
"nitropack": "^2.10.4",
"nuxt": "^3.15.4",
"nuxt-fonts-devtools": "workspace:*",
"ofetch": "^1.4.1",
"pkg-pr-new": "^0.0.39",
"playwright-core": "^1.50.1",
"semver": "^7.7.1",
"shiki": "^2.3.2",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vite": "^6.1.0",
"vitest": "^3.0.5",
"vue": "3.5.13",
"vue-bundle-renderer": "^2.1.1",
"vue-tsc": "^2.2.0"
},
"resolutions": {
"@nuxt/fonts": "workspace:*",
"@unocss/core": "^65.4.3",
"@unocss/nuxt": "^65.4.3",
"@unocss/preset-attributify": "^65.4.3",
"@unocss/preset-icons": "^65.4.3",
"@unocss/preset-mini": "^65.4.3",
"@unocss/reset": "^65.4.3",
"typescript": "^5.7.3",
"unocss": "^65.4.3"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@nuxt/devtools-ui-kit": "patches/@nuxt__devtools-ui-kit.patch"
}
}
}