-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "@gafreax/csscrunch",
"version": "1.0.18",
"description": "Simple CSS Parser to tokenize CSS, merge rules, and optimize it",
"main": "dist/src/index.js",
"scripts": {
"prepublish": "pnpm run build",
"build": "tsc",
"clean": "rimraf dist/",
"start": "ts-node src/launch.ts",
"lint": "ts-standard src/**/*.ts",
"lint:fix": "ts-standard --fix src/**/*.ts",
"prebuild": "pnpm run clean && ts-standard --fix src/**/*.ts tests/**/*.ts",
"prepare": "pnpm run build && husky",
"test": "vitest run",
"coverage": "vitest --coverage",
"snap": "vitest run --update"
},
"author": "Gabriele Fontana",
"bin": {
"csscrunch": "dist/src/launch.js"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@vitest/coverage-v8": "^3.0.5",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5"
},
"dependencies": {
"@types/node": "^22.13.4",
"commander": "^13.1.0",
"vitest": "^3.0.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.0"
},
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0"
}
}
}