forked from atlowChemi/vite-svg-2-webfont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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": "1.0.1",
"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": ">=16.0.0"
},
"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 install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chemiAtlow/vite-svg-2-webfont.git"
},
"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"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/vusion__webfonts-generator": "^0.8.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitest/coverage-istanbul": "^0.28.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"node-fetch": "^3.3.0",
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.2"
},
"dependencies": {
"@vusion/webfonts-generator": "^0.8.0",
"glob": "^8.1.0"
}
}