generated from sonofmagic/monorepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.92 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.92 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
{
"name": "tailwindcss-patch",
"version": "8.7.3",
"description": "patch tailwindcss for exposing context and extract classes",
"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/tailwindcss-patch"
},
"bugs": {
"url": "https://github.com/sonofmagic/tailwindcss-mangle/issues"
},
"keywords": [
"tailwindcss",
"patch",
"extract",
"class"
],
"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",
"bin": {
"tw-patch": "dev/bin.ts",
"tailwindcss-patch": "dev/bin.ts"
},
"files": [
"bin",
"dist",
"schema"
],
"scripts": {
"dev": "tsup --watch --sourcemap",
"build": "tsup",
"test": "vitest run",
"test:dev": "vitest",
"patch": "tsx dev/bin.ts install",
"r0": "tsx dev/bin.ts extract",
"r1": "tsx dev/bin.ts extract --css index.css"
},
"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.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@tailwindcss-mangle/config": "workspace:*",
"@tailwindcss/node": "^4.2.1",
"cac": "^6.7.14",
"consola": "^3.4.2",
"fs-extra": "^11.3.3",
"local-pkg": "^1.1.2",
"pathe": "^2.0.3",
"postcss": "^8.5.6",
"semver": "^7.7.4",
"tailwindcss-config": "^1.1.4"
},
"devDependencies": {
"@tailwindcss/oxide": "^4.2.1",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/vite": "^4.2.1",
"tailwindcss": "catalog:tailwindcss4",
"tailwindcss-3": "catalog:tailwindcss3",
"tailwindcss-4": "catalog:tailwindcss4"
}
}