-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.41 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.41 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
28
29
30
31
32
33
34
35
36
37
{
"name": "default",
"version": "1.0.0",
"description": "<p align=\"center\"><img src=\"picture.png\" /></p>",
"main": "index.js",
"type": "module",
"scripts": {
"prebuild:css": "node scripts/build-index.js",
"build:css": "sass --quiet-deps --load-path=node_modules src/scss/styles.scss styles.css --no-source-map --style=compressed",
"watch:css": "sass --quiet-deps --load-path=node_modules src/scss/styles.scss styles.css --watch --embed-source-map",
"build:js": "esbuild src/js/library.js --bundle --format=iife --minify --outfile=library.js",
"watch:js": "esbuild src/js/library.js --bundle --format=iife --outfile=library.js --watch",
"build": "npm run build:css && npm run build:js",
"dev": "concurrently \"npm run watch:css\" \"npm run watch:js\""
},
"repository": {
"type": "git",
"url": "https://github.com/LaswitchTech/core-theme-default.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LaswitchTech/core-theme-default/issues"
},
"homepage": "https://github.com/LaswitchTech/core-theme-default#readme",
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.7"
},
"devDependencies": {
"concurrently": "^9.2.0",
"esbuild": "^0.25.8",
"sass": "^1.89.2",
"vite": "^7.0.5"
}
}