-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.94 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.94 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
{
"name": "classpresso",
"version": "1.7.2",
"description": "CSS class consolidation tool - compress multiple utility classes into single optimized classes",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js",
"require": "./dist/cli.cjs"
},
"./scanner": {
"types": "./dist/scanner.d.ts",
"import": "./dist/scanner.js",
"require": "./dist/scanner.cjs"
},
"./consolidator": {
"types": "./dist/consolidator.d.ts",
"import": "./dist/consolidator.js",
"require": "./dist/consolidator.cjs"
},
"./transformer": {
"types": "./dist/transformer.d.ts",
"import": "./dist/transformer.js",
"require": "./dist/transformer.cjs"
}
},
"bin": {
"classpresso": "./bin/classpresso.js"
},
"files": [
"dist",
"bin",
"AI-INSTRUCTIONS.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"css",
"tailwindcss",
"optimization",
"class-consolidation",
"nextjs",
"react",
"build-tool",
"postcss"
],
"author": "Tim Carter",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TheDecipherist/classpresso"
},
"homepage": "https://classpresso.com",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"glob": "^11.0.0",
"postcss": "^8.4.49"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsup": "^8.0.1",
"typescript": "^5.7.2",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}