-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.06 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@pardnchiu/adminui",
"version": "0.4.3",
"description": "AdminUI is a simple backend management system template with an intuitive interface and a modular architecture, supporting custom extensions, enabling developers to quickly build and customize backend management platforms.",
"main": "",
"scripts": {
"build:debug": "npx terser src/js/*.js src/js/**/*.js -o dist/AdminUI.debug.js",
"build:min": "npx terser src/js/*.js src/js/**/*.js -c -m -o dist/AdminUI.js --config-file terser.config.json",
"build:demo": "npx terser src/js/*.js src/js/**/*.js -c -m -o demo/app/public/js/AdminUI.js --config-file terser.config.json",
"build:once": "npm-run-all build:debug build:min build:demo",
"build": "chokidar src/js/*.js src/js/**/*.js -c 'npm run build:once'",
"sass:dist": "sass src/sass/:dist/ -w --style compressed --no-source-map",
"sass:demo": "sass src/sass/:demo/app/public/css -w --style compressed --no-source-map",
"sass": "npm-run-all -p sass:dist sass:demo",
"error:php": "lnav -r demo/app/storage/logs/error.log",
"debug:php": "lnav -r demo/app/storage/logs/debug.log"
},
"files": [
"demo",
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/pardnchiu/AdminUI.git"
},
"keywords": [
"backend management",
"management system template",
"frontend template",
"admin dashboard",
"admin panel",
"邱敬幃",
"pardnchiu"
],
"author": {
"name": "邱敬幃 Pardn Chiu",
"email": "dev@pardn.io",
"url": "https://github.com/pardnchiu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pardnchiu/AdminUI/issues",
"email": "dev@pardn.io"
},
"homepage": "https://github.com/pardnchiu/AdminUI#readme",
"devDependencies": {
"chokidar-cli": "3.0.0",
"npm-run-all": "^4.1.5",
"sass": "1.62.0",
"terser": "5.31.3"
}
}