-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
99 lines (99 loc) · 2.34 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
{
"name": "@nuxtjs/fontaine",
"version": "0.5.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/fontaine.git"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"fonts",
"cls",
"web-vitals",
"performance"
],
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"transform": [
"./dist/transform.d.mts"
]
}
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./transform": "./dist/transform.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "pnpm nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"lint": "pnpm lint:all:eslint",
"lint:all:eslint": "pnpm lint:eslint .",
"lint:eslint": "eslint --fix",
"prepack": "pnpm build",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish",
"test": "vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.15.4",
"fontaine": "^0.5.0",
"magic-string": "^0.30.17",
"pathe": "^2.0.3",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "1.2.0",
"@nuxt/module-builder": "1.0.0-alpha.1",
"@nuxt/schema": "3.16.0",
"@nuxt/test-utils": "3.17.2",
"@types/node": "22.13.10",
"@vitest/coverage-v8": "3.0.8",
"bumpp": "10.0.3",
"eslint": "9.22.0",
"lint-staged": "15.4.3",
"nuxt": "3.16.0",
"rollup": "4.35.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.8.2",
"unbuild": "3.5.0",
"vitest": "3.0.8",
"vue": "3.5.13"
},
"lint-staged": {
"*.{md,js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"resolutions": {
"@nuxt/kit": "3.16.0",
"@nuxtjs/fontaine": "link:."
},
"packageManager": "pnpm@10.6.2"
}