-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.44 KB
/
package.json
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
{
"name": "breezify",
"version": "1.1.3",
"description": "A tool for minifying CSS class names",
"author": "Gleb Gorokhov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glebgorokhov/breezify/issues"
},
"homepage": "https://github.com/glebgorokhov/breezify#readme",
"private": false,
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"types": "lib/mjs/index.d.ts",
"bin": {
"breezify": "./lib/mjs/cli.js"
},
"type": "module",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node create-package-jsons.js && chmod +x ./lib/cjs/cli.js && chmod +x ./lib/mjs/cli.js",
"lint": "eslint . --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"cli-preview": "npm run build && node ./lib/mjs/cli.js",
"prepack": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/glebgorokhov/breezify"
},
"keywords": [
"css",
"class",
"classes",
"classnames",
"names",
"minify",
"obfuscate",
"uglify",
"breezify"
],
"dependencies": {
"acorn": "^8.11.3",
"acorn-walk": "^8.3.2",
"astring": "^1.8.6",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"css-tree": "^2.3.1",
"csso": "^5.0.5",
"escape-string-regexp": "^5.0.0",
"glob": "^10.3.10",
"html-minifier": "^4.0.0",
"inquirer": "^9.2.15",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"parse5": "^7.1.2",
"pretty": "^2.0.0",
"terser": "^5.28.1"
},
"devDependencies": {
"@types/css-tree": "^2.3.6",
"@types/csso": "^5.0.4",
"@types/html-minifier": "^4.0.5",
"@types/inquirer": "^9.0.7",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.set": "^4.3.9",
"@types/node": "^20.11.19",
"@types/pretty": "^2.0.3",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vitest": "^1.3.1"
}
}