-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 900 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 900 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
{
"name": "fa-icons",
"version": "6.7.2",
"description": "A font awesome icon library for preact.",
"license": "ISC",
"author": "harsh vairagi",
"type": "module",
"scripts": {
"create": "node create.js",
"clean": "rm -rf ./solid ./brands ./regular ./preact/dist",
"build:solid": "vite build --config ./solid/vite.config.js",
"build:brands": "vite build --config ./brands/vite.config.js",
"build:regular": "vite build --config ./regular/vite.config.js",
"build:preact": "vite build --config ./preact/vite.config.js && cd preact; npm run build",
"build": "npm run build:solid && npm run build:brands && npm run build:regular && npm run build:preact",
"all": "npm run clean && npm run create && npm run build"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"preact": "^10.26.9",
"svg-parser": "^2.0.4",
"vite": "^7.0.3"
}
}