-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vite-plugin-bundle-obfuscator",
"version": "1.4.0",
"homepage": "/~https://github.com/z0ffy/vite-plugin-bundle-obfuscator",
"description": "JavaScript obfuscator plugin for Vite environments",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"start": "npm run build -- --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"lint:lint-staged": "lint-staged",
"commitlint": "commitlint --edit",
"version": "auto-changelog"
},
"keywords": [
"vite",
"obfuscator",
"vite-plugin-obfuscator",
"vite-bundle-obfuscator",
"javascript",
"javascript-obfuscator"
],
"author": "zoffy",
"files": [
"/dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "/~https://github.com/z0ffy/vite-plugin-bundle-obfuscator.git"
},
"bugs": {
"url": "/~https://github.com/z0ffy/vite-plugin-bundle-obfuscator/issues"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"auto-changelog": "^2.5.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"dependencies": {
"javascript-obfuscator": "^4.1.1"
},
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix"
]
}
}