forked from nuxt/fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.61 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
{
"name": "@nuxt/fonts",
"version": "0.6.1",
"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/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": {
"types": "./dist/utils.d.mts",
"import": "./dist/utils.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"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",
"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": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit && cd ../client && vue-tsc --noEmit",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.1.5",
"@nuxt/kit": "^3.11.1",
"chalk": "^5.3.0",
"css-tree": "^2.3.1",
"defu": "^6.1.4",
"esbuild": "^0.20.2",
"fontaine": "^0.5.0",
"globby": "^14.0.1",
"h3": "^1.11.1",
"jiti": "^1.21.0",
"magic-regexp": "^0.8.0",
"magic-string": "^0.30.8",
"node-fetch-native": "^1.6.4",
"ohash": "^1.1.3",
"pathe": "^1.1.2",
"sirv": "^2.0.4",
"ufo": "^1.5.3",
"unplugin": "^1.10.1",
"unstorage": "^1.10.2"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.31",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.1",
"@nuxt/test-utils": "^3.12.0",
"@types/css-tree": "^2.3.7",
"@vitest/coverage-v8": "^1.4.0",
"birpc": "^0.2.17",
"changelogen": "^0.5.5",
"consola": "^3.2.3",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"ofetch": "^1.3.4",
"nitropack": "^2.9.5",
"nuxt": "^3.11.1",
"nuxt-fonts-devtools": "latest",
"playwright-core": "^1.42.1",
"semver": "^7.6.0",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vite": "^5.2.7",
"vitest": "^1.4.0",
"vue-bundle-renderer": "^2.0.0",
"vue-tsc": "^2.0.7"
},
"resolutions": {
"@nuxt/fonts": "workspace:*"
}
}