forked from elmeet/vite-plugin-javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "vite-plugin-javascript-obfuscator",
"version": "1.0.0",
"description": "Vite plugin for javascript-obfuscator",
"main": "dist/vite-plugin-javascript-obfuscator.cjs.js",
"module": "dist/vite-plugin-javascript-obfuscator.es.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"prebuild": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elmeet/vite-plugin-javascript-obfuscator.git"
},
"keywords": [
"vite",
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator"
],
"author": "elmeet@163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/elmeet/vite-plugin-javascript-obfuscator/issues"
},
"homepage": "https://github.com/elmeet/vite-plugin-javascript-obfuscator#readme",
"dependencies": {
"javascript-obfuscator": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"rollup": "^2.76.0",
"rollup-plugin-babel": "^4.4.0"
},
"files": [
"dist"
]
}