-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 906 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
{
"name": "wwdtm-theme",
"description": "wwdtm-theme",
"author": {
"name": "Linh Pham",
"url": "https://linhpham.org/"
},
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@ibm/plex-mono": "^2.5.0",
"@ibm/plex-sans": "^1.1.0",
"@ibm/plex-serif": "^2.0.0"
},
"scripts": {
"copy-css": "cp wwdtm-theme/dist/css/*.css app/static/css/",
"copy-fonts": "cp -r node_modules/@ibm/plex-mono/fonts/* node_modules/@ibm/plex-sans/fonts/* node_modules/@ibm/plex-serif/fonts/* app/static/fonts/",
"copy-js": "cp wwdtm-theme/dist/js/*.js app/static/js/",
"copy-icons": "cp -r wwdtm-theme/dist/bootstrap-icons app/static/",
"copy-all": "npm run copy-css && npm run copy-fonts && npm run copy-js && npm run copy-icons"
},
"allowScripts": {
"@ibm/plex-mono#2.5.0": false,
"@ibm/plex-sans#1.1.0": false,
"@ibm/plex-serif#2.0.0": false
}
}