-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 760 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 760 Bytes
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
{
"name": "wticons",
"private": true,
"description": "Bundle of website development and technology icons for React and Astro",
"repository": "git@github.com:OzzyCzech/wticons.git",
"author": "Roman Ožana <roman@ozana.cz>",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"optimize": "svgo -i ./icons",
"build": "yarn optimize && yarn workspaces run rebuild && node ./update.js"
},
"resolutions": {
"@svgr/plugin-svgo/svgo": "3.3.3",
"astro/svgo": "4.0.1"
},
"devDependencies": {
"lerna": "^9.0.5",
"svgo": "^4.0.1"
},
"keywords": [
"programming",
"development",
"webdesign",
"technology",
"icons",
"react",
"astro",
"svg"
],
"dependencies": {
"@babel/runtime": "^7.28.6"
}
}