-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.06 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.06 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@pardnchiu/quickui",
"version": "0.6.17",
"description": "QuickUI is a lightweight frontend framework built on pure JavaScript and native APIs. Supports data binding, i18n support, event binding, conditional rendering, and loop rendering.",
"main": "dist/QuickUI.js",
"module": "dist/QuickUI.esm.js",
"types": "src/interface.ts",
"scripts": {
"build:debug": "tsc",
"build:min": "npx terser src/QuickUI.debug.js -c -m -o dist/QuickUI.js --config-file terser.config.json",
"build:esm": "npx terser src/QuickUI.debug.js -c -m -o dist/QuickUI.esm.js --config-file terser.config.json && echo 'export const QUI = window.QUI;' >> dist/QuickUI.esm.js",
"build:once": "npm run build:debug && npm-run-all build:min build:esm",
"build": "chokidar src/QuickUI.debug.js -c 'npm-run-all build:min build:esm'",
"sass:library": "sass src/sass:dist/ -w --style compressed --no-source-map",
"sass:index": "sass static/sass/:static/css/ -w --style compressed --no-source-map",
"sass": "npm-run-all sass:library sass:index"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pardnchiu/QuickUI.git"
},
"keywords": [
"javascript-library",
"front-end-framework",
"UI-framework",
"virtual-DOM",
"loop-rendering",
"conditional-rendering",
"pure-javascript",
"native-api",
"邱敬幃",
"pardnchiu"
],
"author": {
"name": "邱敬幃 Pardn Chiu",
"email": "dev@pardn.io",
"url": "https://github.com/pardnchiu"
},
"license": "Proprietary",
"bugs": {
"url": "https://github.com/pardnchiu/QuickUI/issues",
"email": "dev@pardn.io"
},
"homepage": "https://github.com/pardnchiu/QuickUI#readme",
"devDependencies": {
"chokidar-cli": "3.0.0",
"terser": "5.31.3",
"sass": "1.62.0"
}
}