-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
106 lines (106 loc) · 2.96 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
{
"name": "@nuxt/fonts",
"version": "0.10.2",
"description": "Automatic font configuration for Nuxt apps",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/fonts.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": {
"types": "./dist/utils.d.mts",
"import": "./dist/utils.mjs",
"require": "./dist/utils.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.mts",
"files": [
"dist",
"utils.d.ts"
],
"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 playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare client",
"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": "^1.6.0",
"@nuxt/kit": "^3.14.159",
"chalk": "^5.3.0",
"css-tree": "^3.0.1",
"defu": "^6.1.4",
"esbuild": "^0.24.0",
"fontaine": "^0.5.0",
"h3": "^1.13.0",
"jiti": "^2.4.0",
"magic-regexp": "^0.8.0",
"magic-string": "^0.30.12",
"node-fetch-native": "^1.6.4",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"sirv": "^3.0.0",
"tinyglobby": "^0.2.10",
"ufo": "^1.5.4",
"unifont": "^0.1.5",
"unplugin": "^1.15.0",
"unstorage": "^1.13.1"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.4",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.159",
"@nuxt/test-utils": "^3.14.4",
"@types/css-tree": "^2.3.8",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.1.4",
"birpc": "^0.2.19",
"changelogen": "^0.5.7",
"consola": "^3.2.3",
"eslint": "^9.14.0",
"nitropack": "^2.10.4",
"nuxt": "^3.14.159",
"nuxt-fonts-devtools": "workspace:*",
"ofetch": "^1.4.1",
"playwright-core": "^1.48.2",
"semver": "^7.6.3",
"shiki": "^1.22.2",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"vue": "3.5.12",
"vue-bundle-renderer": "^2.1.1",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"@nuxt/fonts": "workspace:*"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"@nuxt/devtools-ui-kit": "patches/@nuxt__devtools-ui-kit.patch"
}
}
}