-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.09 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
{
"name": "@tailwindcss-mangle/core",
"type": "module",
"version": "5.1.6",
"description": "The core of tailwindcss-mangle",
"author": "ice breaker <1324318532@qq.com>",
"license": "MIT",
"engines": {
"node": "^22.18.0 || >=24.11.0"
},
"homepage": "https://mangle.icebreaker.top/",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/tailwindcss-mangle.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/sonofmagic/tailwindcss-mangle/issues"
},
"keywords": [
"tailwindcss",
"patch",
"core",
"mangle"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsdown --watch --sourcemap",
"build": "tsdown",
"test": "vitest run --coverage.enabled",
"test:dev": "vitest",
"coverage": "vitest run --coverage"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"dependencies": {
"@ast-core/escape": "^1.0.1",
"@babel/parser": "^8.0.0",
"@babel/traverse": "^8.0.0",
"@babel/types": "^8.0.0",
"@tailwindcss-mangle/config": "workspace:^",
"@tailwindcss-mangle/shared": "workspace:^",
"@vue/compiler-sfc": "^3.5.38",
"fast-sort": "^3.4.1",
"fs-extra": "^11.3.5",
"htmlparser2": "12.0.0",
"magic-string": "^0.30.21",
"parse5": "^8.0.1",
"pathe": "^2.0.3",
"postcss": "^8.5.15",
"postcss-selector-parser": "^7.1.4",
"svelte": "^5.56.3"
},
"devDependencies": {
"@types/parse5": "^7.0.0"
}
}