forked from feat-agency/vite-plugin-webfont-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.54 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
{
"name": "vite-plugin-webfont-dl",
"version": "3.10.2",
"description": "Vite plugin for downloading and injecting webfonts",
"keywords": [
"vite",
"vite-plugin",
"web-font",
"webfont",
"webfont-dl",
"webfont-download",
"google-fonts",
"bunny-fonts",
"fontshare",
"vue",
"react"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.d.ts"
],
"scripts": {
"start": "npm run build -- --watch",
"build": "tsup src/index.ts",
"lint": "tsc --noEmit --downlevelIteration && eslint \"src/**/*.ts\" --no-fix",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"test": "vitest"
},
"author": "feat. agency <hello@feat.agency>",
"license": "MIT",
"dependencies": {
"axios": "^1",
"clean-css": "^5",
"flat-cache": "^6",
"picocolors": "^1"
},
"peerDependencies": {
"vite": "^2 || ^3 || ^4 || ^5 || ^6"
},
"devDependencies": {
"@types/clean-css": "^4",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8",
"eslint": "^9",
"rollup": "^2 || ^3 || ^4",
"tsup": "^6 || ^7 || ^8",
"typescript": "^4 || ^5 || ^6",
"vitest": "^0 || ^1 || ^2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feat-agency/vite-plugin-webfont-dl.git"
},
"bugs": {
"url": "https://github.com/feat-agency/vite-plugin-webfont-dl/issues"
},
"homepage": "https://webfont-dl.feat.agency"
}