-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.82 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
{
"name": "next-css-obfuscator",
"version": "2.2.18",
"description": "A package deeply inspired by PostCSS-Obfuscator but for Next.js.",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"test": "tsc & vitest",
"test@cover": "tsc & vitest run --coverage",
"build": "npm run test && tsc",
"dev": "tsc -w",
"pub": "npm run build && npm publish",
"pub@beta": "npm run build && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soranoo/next-css-obfuscator.git"
},
"author": "soranoo (Freeman)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soranoo/next-css-obfuscator/issues"
},
"homepage": "https://github.com/soranoo/next-css-obfuscator#readme",
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@types/node": "^20.8.10",
"@types/react": "^18.2.31",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.3.1",
"prettier": "^3.2.4",
"tslib": "^2.6.2",
"typescript": "^5.0.2",
"vitest": "^1.3.1"
},
"dependencies": {
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.9",
"@babel/traverse": "^7.23.9",
"css-parse": "^2.0.0",
"htmlparser2": "^9.1.0",
"recoverable-random": "^1.0.5",
"yargs": "^17.7.2"
},
"bin": {
"next-css-obfuscator": "./bin/cli.mjs"
},
"keywords": [
"nextjs",
"plugin",
"obfuscation",
"css",
"css classes",
"class renamer",
"CSS obfuscation",
"Class name scrambling",
"CSS security",
"Obfuscate CSS code",
"Protect CSS code",
"Prevent CSS reverse-engineering",
"tailwindcss",
"bootstrap",
"Scramble HTML classes",
"CSS anti-theft protection",
"code privacy",
"CSS code obfuscator",
"CSS class name encryption"
]
}