forked from nuxt-modules/fontaine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.65 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
{
"name": "@nuxtjs/fontaine",
"version": "0.2.4",
"license": "MIT",
"repository": "nuxt-modules/fontaine",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"fonts",
"cls",
"web-vitals",
"performance"
],
"author": {
"name": "Daniel Roe <[email protected]>",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./transform": {
"import": "./dist/transform.mjs",
"require": "./dist/transform.cjs",
"types": "./dist/transform.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "pnpm nuxt-module-build --stub && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .",
"lint:all:prettier": "pnpm lint:prettier \"{src,test}/**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"prepack": "pnpm build",
"prepare": "husky install",
"prepublishOnly": "pnpm lint && pnpm test && pinst --disable",
"release": "release-it",
"test": "vitest run",
"test:types": "tsc --noEmit",
"postinstall": "husky install",
"postpublish": "pinst --enable"
},
"dependencies": {
"@nuxt/kit": "3.0.0",
"fontaine": "^0.2.3",
"magic-string": "^0.27.0",
"pathe": "^1.0.0",
"ufo": "^1.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "0.2.1",
"@nuxt/schema": "3.0.0",
"@nuxt/test-utils": "3.0.0",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"@release-it/conventional-changelog": "5.1.1",
"@types/node": "18.13.0",
"@types/serve-handler": "6.1.1",
"@vitest/coverage-c8": "0.28.4",
"c8": "7.12.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"expect-type": "0.15.0",
"get-port-please": "3.0.1",
"husky": "8.0.3",
"lint-staged": "13.1.1",
"nuxt": "3.0.0",
"pinst": "3.0.0",
"prettier": "2.8.3",
"release-it": "15.6.0",
"serve-handler": "6.1.5",
"typescript": "4.9.5",
"vitest": "0.28.4",
"vue": "3.2.47"
},
"resolutions": {
"@nuxtjs/fontaine": "link:."
},
"packageManager": "[email protected]",
"volta": {
"node": "18.14.0"
}
}