-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.43 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
{
"name": "@nuxtjs/google-fonts",
"version": "3.2.0",
"description": "Google Fonts module for Nuxt",
"repository": "nuxt-modules/google-fonts",
"license": "MIT",
"contributors": [
"Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue",
"prepack": "pnpm build",
"release": "pnpm test && pnpm prepack && pnpm changelogen --release --push && pnpm publish",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"@nuxt/kit": "^3.11.1",
"google-fonts-helper": "^3.5.0",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@vitest/coverage-v8": "latest",
"changelogen": "latest",
"del": "latest",
"eslint": "latest",
"nuxt": "latest",
"vitest": "latest"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.1.1"
}