-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 2 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
{
"name": "vite-svg-2-webfont",
"version": "3.4.0",
"description": "A vite plugin which generates a webfont out of svg icons",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"type": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": "^18 || >=20"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --cache .",
"format": "prettier --write --cache .",
"type-check": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlowChemi/vite-svg-2-webfont"
},
"keywords": [
"vite",
"vite-plugin",
"svg-font",
"webfont",
"webfont-loader"
],
"author": "Chemi Atlow",
"license": "MIT",
"bugs": {
"url": "https://github.com/chemiAtlow/vite-svg-2-webfont/issues"
},
"homepage": "https://github.com/chemiAtlow/vite-svg-2-webfont#readme",
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@types/vusion__webfonts-generator": "^0.8.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitest/coverage-istanbul": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"dependencies": {
"@vusion/webfonts-generator": "^0.8.0",
"glob": "^10.3.10"
},
"overrides": {
"make-fetch-happen": "^13.0.0"
}
}