-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "nuxt-font-loader",
"version": "2.3.5",
"description": "Simple, modern and lightweight font loader for Nuxt.",
"author": "Ivo Dolenc",
"license": "MIT",
"repository": "ivodolenc/nuxt-font-loader",
"homepage": "https://github.com/ivodolenc/nuxt-font-loader",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/module.mjs",
"types": "./dist/types.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"nuxt",
"nuxt-module",
"nuxt-composables",
"nuxt-font-composables",
"nuxt-font-loader",
"font-loader",
"nuxt-font"
],
"scripts": {
"dev": "nuxt dev playground",
"build": "hyperbundler",
"build:play": "nuxt build playground",
"generate:play": "nuxt generate playground",
"preview:play": "nuxt preview playground",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js .",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js --fix .",
"format": "prettier --config .config/prettier.config.js --write .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@hypernym/bundler": "^0.6.2",
"@hypernym/eslint-config": "^2.0.3",
"@hypernym/prettier-config": "^2.0.3",
"@types/node": "^20.10.0",
"eslint": "^8.54.0",
"nuxt": "^3.8.2",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
}
}