-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "bun-plugin-javascript-obfuscator",
"version": "1.0.1",
"description": "A Bun bundler plugin that integrates javascript-obfuscator for code obfuscation during builds",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target bun && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"prepublishOnly": "bun run build"
},
"keywords": [
"bun",
"bundler",
"plugin",
"javascript-obfuscator",
"obfuscator",
"obfuscation",
"minify",
"protect"
],
"author": "",
"license": "MIT",
"dependencies": {
"javascript-obfuscator": "^4.1.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"bun": ">=1.0.0"
}
}