-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "tailwind_v4_html_static",
"version": "1.0.0",
"description": "Tailwind CSS v4 HTML static project with class obfuscation",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 3001",
"build": "pnpm run extract-classes && vite build",
"preview": "vite preview --port 3001",
"extract-classes": "tsx scripts/extract-classes.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,html}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist .tw-obfuscation node_modules/.vite"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.4",
"tailwindcss": "^4.2.4",
"vite": "^8.0.10"
},
"devDependencies": {
"@types/jsdom": "^28.0.3",
"@types/node": "^22.10.2",
"@vitest/ui": "^4.1.5",
"jsdom": "^25.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unplugin-tailwindcss-mangle": "^5.0.0",
"vitest": "^4.1.5"
}
}