-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 990 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 990 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
{
"name": "dynamic-site-loader",
"version": "1.1.3",
"description": "A library to dynamically load content for static HTML websites.",
"main": "dist/dynamic-loader.js",
"scripts": {
"build:dev": "webpack --config webpack.config.js --mode development",
"build:prod": "webpack --config webpack.config.prod.js --mode production",
"build": "npm run build:dev && npm run build:prod"
},
"repository": {
"type": "git",
"url": "https://github.com/dfiredeveloper/dynamic-loader.git"
},
"keywords": [
"dynamic loading",
"SPA",
"static websites"
],
"author": "Ilemona Achimugu",
"license": "MIT",
"homepage": "https://dsl-1.vercel.app",
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"babel-loader": "^9.1.3",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.93.0",
"webpack-cli": "^4.10.0"
}
}