-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.81 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
{
"name": "@nuxt/fonts",
"version": "0.14.0",
"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": "nuxt generate client",
"client:dev": "nuxt dev client --port 3300",
"docs:dev": "cd docs && pnpm dev",
"docs:build": "cd docs && pnpm build",
"dev": "nuxt dev playgrounds/basic",
"dev:scss": "nuxt dev playgrounds/scss",
"dev:tailwind@3": "nuxt dev playgrounds/tailwindcss@3",
"dev:tailwind@4": "nuxt dev playgrounds/tailwindcss@4",
"dev:unocss": "nuxt dev playgrounds/unocss",
"dev:build": "nuxt build playgrounds/basic",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare client && nuxt prepare playgrounds/basic && nuxt prepare playgrounds/scss && nuxt prepare playgrounds/tailwindcss@3 && nuxt prepare playgrounds/tailwindcss@4 && nuxt prepare playgrounds/unocss && nuxt prepare docs",
"release": "echo \"Merge a release PR to main\"",
"lint": "eslint .",
"test": "vitest run --coverage",
"test:types": "vue-tsc --noEmit && pnpm -r test:types",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/devtools-kit": "^3.2.4",
"@nuxt/kit": "^4.2.2",
"consola": "^3.4.2",
"defu": "^6.1.7",
"fontless": "^0.2.1",
"h3": "^1.15.11",
"magic-regexp": "^0.11.0",
"ofetch": "^1.5.1",
"pathe": "^2.0.3",
"sirv": "^3.0.2",
"tinyglobby": "^0.2.17",
"ufo": "^1.6.4",
"unifont": "^0.7.4",
"unplugin": "^3.0.0",
"unstorage": "^1.17.5"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.23",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^1.16.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.2",
"@nuxt/test-utils": "^4.0.3",
"@types/node": "^24.13.1",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.8",
"birpc": "^4.0.0",
"changelogen": "^0.6.2",
"eslint": "^10.4.1",
"nitropack": "^2.13.4",
"nuxt": "^4.2.2",
"nuxt-fonts-devtools": "workspace:client",
"pkg-pr-new": "^0.0.75",
"playwright-core": "^1.60.0",
"semver": "^7.8.4",
"typescript": "^6.0.3",
"unbuild": "^3.6.1",
"vite": "~7.3.5",
"vitest": "^4.1.8",
"vue": "3.5.35",
"vue-bundle-renderer": "^2.2.0",
"vue-tsc": "^3.3.4"
},
"packageManager": "pnpm@11.5.2"
}