-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 930 Bytes
/
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
{
"name": "postcss-fonticons",
"version": "2.0.2",
"description": "PostCSS plugin to generate font icons from stylesheets.",
"main": "dist/index.js",
"keywords": [
"iconfont",
"webfont",
"postcss",
"postcss-plugin",
"tools"
],
"files": [
"dist"
],
"author": "zner0L",
"repository": {
"type": "git",
"url": "https://github.com/zner0L/postcss-fonticons"
},
"scripts": {
"build": "tsc",
"prepublish": "yarn build"
},
"license": "MIT",
"dependencies": {
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^10.0.6",
"ttf2woff": "^3.0.0"
},
"devDependencies": {
"@types/node": "^17.0.42",
"@types/svgicons2svgfont": "^10.0.1",
"postcss": "^8.0.0",
"typescript": "^4.7.3"
},
"peerDependencies": {
"postcss": "^8.4.14"
}
}