-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (26 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (26 loc) · 1.32 KB
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": "lilgobguides",
"version": "1.0.0",
"description": "Old School Runescape Guides For Ultimate Irons",
"main": "index.js",
"scripts": {
"build-bootstrap-css": "sass scss/custom-bootstrap.scss wwwroot/css/bootstrap-custom.css",
"build-bootstrap-js-win": "copy \"node_modules\\bootstrap\\dist\\js\\bootstrap.bundle.min.js\" \"wwwroot\\js\\bootstrap.bundle.min.js\"",
"build-bootstrap-js-linux": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js wwwroot/js/bootstrap.bundle.min.js",
"build-trix-js-win": "copy \"node_modules\\trix\\dist\\trix.esm.min.js\" \"wwwroot\\js\\trix.esm.min.js\"",
"build-trix-js-linux": "cp node_modules/trix/dist/trix.esm.min.js wwwroot/js/trix.esm.min.js",
"build-trix-css-win": "copy \"node_modules\\trix\\dist\\trix.css\" \"wwwroot\\css\\trix.css\"",
"build-trix-css-linux": "cp node_modules/trix/dist/trix.css wwwroot/css/trix.css",
"build-assets-win": "npm run build-bootstrap-js-win && npm run build-trix-js-win && npm run build-trix-css-win",
"build-assets-linux": "npm run build-bootstrap-js-linux && npm run build-trix-js-linux && npm run build-trix-css-linux"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.3.6",
"lilgobguides": "file:",
"sass": "^1.89.0",
"trix": "^2.1.15"
}
}