-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.16 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "tailwindcss-patch",
"version": "9.0.0",
"description": "patch tailwindcss for exposing context and extract classes",
"author": "ice breaker <1324318532@qq.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://mangle.icebreaker.top/",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/tailwindcss-mangle.git",
"directory": "packages/tailwindcss-patch"
},
"bugs": {
"url": "https://github.com/sonofmagic/tailwindcss-mangle/issues"
},
"keywords": [
"tailwindcss",
"patch",
"extract",
"class"
],
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"require": "./src/index.ts"
},
"./migration-report.schema.json": "./schema/migration-report.schema.json",
"./restore-result.schema.json": "./schema/restore-result.schema.json",
"./validate-result.schema.json": "./schema/validate-result.schema.json"
},
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"bin": {
"tw-patch": "dev/bin.ts",
"tailwindcss-patch": "dev/bin.ts"
},
"files": [
"bin",
"dist",
"schema",
"src"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"build": "tsup",
"test": "vitest run",
"test:types": "pnpm build && tsd --typings dist/index.d.mts --files test-d/**/*.test-d.ts",
"test:dev": "vitest",
"bench:cold-start": "node --import tsx bench/cold-start.ts",
"patch": "tsx dev/bin.ts install",
"r0": "tsx dev/bin.ts extract",
"r1": "tsx dev/bin.ts extract --css index.css"
},
"tsd": {
"directory": "test-d"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"bin": {
"tw-patch": "bin/tw-patch.js",
"tailwindcss-patch": "bin/tw-patch.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./migration-report.schema.json": "./schema/migration-report.schema.json",
"./restore-result.schema.json": "./schema/restore-result.schema.json",
"./validate-result.schema.json": "./schema/validate-result.schema.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"peerDependencies": {
"tailwindcss": ">=2.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"dependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.2",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@tailwindcss-mangle/config": "workspace:*",
"@tailwindcss/node": "^4.2.2",
"cac": "6.7.14",
"consola": "^3.4.2",
"fs-extra": "^11.3.4",
"local-pkg": "^1.1.2",
"pathe": "^2.0.3",
"postcss": "^8.5.8",
"semver": "^7.7.4",
"tailwindcss-config": "^1.1.4"
},
"devDependencies": {
"@tailwindcss/oxide": "^4.2.2",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"tailwindcss": "catalog:tailwindcss4",
"tailwindcss-3": "catalog:tailwindcss3",
"tailwindcss-4": "catalog:tailwindcss4"
}
}