-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.39 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.39 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
{
"name": "@projectwallace/format-css",
"version": "3.0.2",
"description": "Fast, small, zero-config library to format or minify CSS with basic rules.",
"keywords": [
"css",
"format",
"formatter",
"prettier",
"prettifier",
"pretty",
"print",
"style",
"stylesheet"
],
"homepage": "https://github.com/projectwallace/format-css",
"license": "MIT",
"author": "Bart Veneman <bart@projectwallace.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/format-css.git"
},
"bin": {
"format-css": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "tsdown",
"test": "vitest --coverage",
"check": "tsc",
"prettier": "prettier --check index.ts test/**/*.ts",
"lint": "oxlint && oxfmt --check"
},
"dependencies": {
"@projectwallace/css-parser": "~0.14.7"
},
"devDependencies": {
"@codecov/rollup-plugin": "^1.9.1",
"@projectwallace/preset-oxlint": "^0.0.7",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.0.3",
"oxfmt": "^0.43.0",
"oxlint": "^1.24.0",
"publint": "^0.3.15",
"tsdown": "^0.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.3"
},
"engines": {
"node": ">=20.12.0"
},
"issues": "https://github.com/projectwallace/format-css/issues"
}