-
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.63 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.63 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": "@comfortcss/PACKAGE_NAME",
"version": "1.0.0",
"description": "Description of your package",
"main": "dist/index.min.css",
"style": "dist/index.min.css",
"files": [
"dist",
"src"
],
"lint-staged": {
"*.{css,json,md,js,yml}": [
"prettier --write"
],
"*.css": [
"stylelint --fix"
]
},
"scripts": {
"build": "lightningcss --minify --bundle --browserslist src/index.css -o dist/index.min.css",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint --fix \"src/**/*.css\"",
"lint": "npm run lint:css",
"lint:fix": "npm run lint:css:fix",
"check": "npm run lint && npm run format -- --check"
},
"keywords": [
"comfortcss",
"css"
],
"author": "ComfortCSS",
"license": "MIT",
"devDependencies": {
"husky": "^9.1.7",
"lightningcss-cli": "^1.33.0",
"lint-staged": "^17.1.1",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"stylelint-prettier": "^5.0.3"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"style": "./dist/index.min.css",
"default": "./dist/index.min.css"
},
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"allowScripts": {
"lightningcss-cli@1.33.0": true
}
}