-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "@projectwallace/format-css",
"version": "1.4.4",
"description": "Fast, small, zero-config library to format CSS with basic rules.",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/format-css.git"
},
"homepage": "https://github.com/projectwallace/format-css",
"issues": "https://github.com/projectwallace/format-css/issues",
"license": "MIT",
"type": "module",
"source": "index.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/format-css.umd.cjs",
"default": "./dist/format-css.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/format-css.umd.cjs",
"module": "./dist/format-css.js",
"unpkg": "./dist/format-css.umd.cjs",
"scripts": {
"build": "vite build",
"test": "c8 --reporter=lcov uvu",
"check": "tsc",
"prettier": "prettier --check index.js test/**/*.js"
},
"devDependencies": {
"@codecov/vite-plugin": "^0.0.1-beta.10",
"@codspeed/tinybench-plugin": "^3.1.0",
"@types/css-tree": "^2.3.4",
"c8": "^10.1.2",
"prettier": "^3.3.3",
"tinybench": "^2.8.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.0.0-beta.1"
},
"dependencies": {
"css-tree": "^3.0.0"
},
"files": [
"dist"
],
"keywords": [
"css",
"stylesheet",
"formatter",
"format",
"print",
"prettifier",
"pretty",
"prettier"
],
"prettier": {
"semi": false,
"useTabs": true,
"printWidth": 140,
"singleQuote": true
}
}