-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.62 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
{
"name": "csvgtocss",
"version": "0.1.3",
"type": "module",
"packageManager": "pnpm@9.15.3",
"description": "Convert svg to css",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"lint": "npx oxlint@latest .",
"prepublishOnly": "pnpm build",
"release": "bumpp"
},
"keywords": [
"svg",
"font",
"convert svg to font",
"iconify"
],
"author": "hunghg255",
"license": "MIT",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"bumpp": "^9.10.0",
"eslint": "^8.57.1",
"prettier": "^2.8.8",
"typescript": "^5.7.3",
"unbuild": "^2.0.0"
},
"bin": {
"csvgtocss": "./bin/csvgtocss.mjs"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/hunghg255/csvgtocss",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/csvgtocss.git"
},
"bugs": {
"url": "https://github.com/hunghg255/csvgtocss/issues"
},
"dependencies": {
"@iconify/tools": "^4.1.1",
"@iconify/utils": "^2.2.1",
"@rgrove/parse-xml": "^4.2.0",
"cheerio": "^1.0.0",
"commander": "^11.1.0",
"consola": "^3.3.3",
"fs-extra": "~11.1.1",
"picocolors": "^1.1.1",
"unreadconfig": "^0.1.0"
}
}