-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.12 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
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
73
74
75
76
77
78
{
"name": "next-css-obfuscator",
"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",
"semantic-release": "semantic-release",
"lint": "biome check ."
},
"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",
"dependencies": {
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.9",
"@babel/traverse": "^7.23.9",
"css-seasoning": "^1.10.1",
"html-escaper": "^3.0.3",
"htmlparser2": "^10.0.0",
"lightningcss-wasm": "^1.30.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@types/html-escaper": "^3.0.4",
"@types/node": "^20.8.10",
"@types/react": "^18.2.31",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^3.0.5",
"semantic-release": "^24.2.3",
"tslib": "^2.6.2",
"typescript": "^5.0.2",
"vitest": "^3.0.5"
},
"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"
],
"version": "3.0.1"
}