-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.37 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.37 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "unplugin-tailwindcss-mangle",
"type": "module",
"version": "5.1.2",
"description": "mangle tailwindcss utilities class plugin. support vite and webpack!",
"author": "ice breaker <1324318532@qq.com>",
"license": "MIT",
"homepage": "https://mangle.icebreaker.top/",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/tailwindcss-mangle.git",
"directory": "packages/unplugin-tailwindcss-mangle"
},
"bugs": {
"url": "https://github.com/sonofmagic/tailwindcss-mangle/issues"
},
"keywords": [
"tailwindcss",
"utilities",
"mangle",
"class",
"obfuscator",
"obfuscation"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"import": "./dist/rollup.js",
"require": "./dist/rollup.cjs"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"import": "./dist/esbuild.js",
"require": "./dist/esbuild.cjs"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"import": "./dist/nuxt.js",
"require": "./dist/nuxt.cjs"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"build": "tsup",
"test": "vitest run --coverage.enabled",
"test:dev": "vitest",
"test:e2e": "TWM_APPS_E2E=1 vitest run test/apps.e2e.test.ts",
"test:e2e:pw": "TWM_APPS_E2E_PLAYWRIGHT=1 vitest run test/apps.playwright.e2e.test.ts"
},
"dependencies": {
"@rollup/pluginutils": "^5.3.0",
"@tailwindcss-mangle/config": "workspace:^",
"@tailwindcss-mangle/core": "workspace:^",
"@tailwindcss-mangle/shared": "workspace:^",
"is-css-request": "^1.0.1",
"magic-string": "^0.30.21",
"unplugin": "^3.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}