-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "@pardnchiu/renderjs",
"version": "2.0.1",
"description": "A lightweight frontend rendering tool focusing on real-time DOM manipulation and flexible utilities for small to medium projects.",
"main": "dist/RenderJS.js",
"scripts": {
"minify": "npx terser src/RenderJS.js -c -m -o dist/RenderJS.js --config-file terser.config.json --name-cache terser.cache.json",
"minify-w": "chokidar 'src/RenderJS.js' -c 'npm run minify'"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pardnchiu/RenderJS.git"
},
"keywords": [
"javascript-library",
"frontend-tool",
"ui-tools",
"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/RenderJS/issues",
"email": "dev@pardn.io"
},
"homepage": "https://github.com/pardnchiu/RenderJS#readme",
"devDependencies": {
"chokidar-cli": "3.0.0",
"terser": "5.31.3",
"sass": "1.62.0"
}
}