-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "blanksheet",
"version": "1.0.2",
"description": "A CSS reset for modern browsers. Eliminates implicit defaults, preserves text semantics, outputs a blank canvas.",
"type": "module",
"main": "blanksheet.min.css",
"style": "blanksheet.min.css",
"scripts": {
"prepare": "husky",
"lint:check": "stylelint blanksheet.css",
"lint:fix": "stylelint --fix blanksheet.css",
"build": "lightningcss --minify blanksheet.css -o blanksheet.min.css",
"prepublishOnly": "pnpm build"
},
"keywords": [
"css",
"reset",
"css-reset",
"normalize",
"design-system",
"blanksheet"
],
"homepage": "https://github.com/P233/blanksheet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/P233/blanksheet.git"
},
"bugs": {
"url": "https://github.com/P233/blanksheet/issues"
},
"files": [
"blanksheet.css",
"blanksheet.min.css"
],
"license": "MIT",
"author": "Peiwen Lu",
"devDependencies": {
"husky": "^9.1.7",
"lightningcss-cli": "^1.31.1",
"lint-staged": "^16.3.0",
"prettier": "^3.8.1",
"stylelint": "^17.4.0",
"stylelint-config-recess-order": "^7.6.1",
"stylelint-order": "^7.0.1",
"stylelint-prettier": "^5.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"lightningcss-cli"
]
},
"lint-staged": {
"*.html": [
"prettier --write"
],
"*.css": [
"stylelint --fix"
]
}
}