-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "marx-css",
"version": "4.1.4",
"description": "The classless CSS reset (perfect for Communists).",
"keywords": [
"blode",
"bootstrap",
"classless",
"css",
"format",
"framework",
"frontend",
"karl",
"layout",
"markdown",
"marx",
"matt",
"matthew blode",
"mblode",
"pure",
"web"
],
"homepage": "https://github.com/mblode/marx",
"bugs": {
"url": "https://github.com/mblode/marx/issues"
},
"license": "MIT",
"author": "Matthew Blode https://github.com/mblode",
"contributors": [
{
"name": "inoas",
"url": "https://github.com/inoas"
},
{
"name": "John Williams",
"url": "https://github.com/johncomposed"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/mblode/marx.git"
},
"style": "./css/marx.min.css",
"files": [
"css",
"src",
"LICENSE.md"
],
"sideEffects": [
"**/*.css"
],
"main": "css/marx.min.css",
"exports": {
".": "./css/marx.min.css",
"./marx.css": "./css/marx.css",
"./marx.min.css": "./css/marx.min.css",
"./css/*": "./css/*",
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run build:dev && npm run build:min",
"build:dev": "lightningcss --bundle --browserslist src/marx.css -o css/marx.css",
"build:min": "cd css && lightningcss --bundle --browserslist --minify --sourcemap ../src/marx.css -o marx.min.css",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt .",
"changeset": "changeset",
"release": "changeset publish",
"test": "npm run lint && npm run format:check && npm run build && npx publint",
"prepare": "lefthook install || true"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^26.1.1",
"browserslist": "^4.28.6",
"lefthook": "^2.1.10",
"lightningcss-cli": "^1.32.0",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"publint": "^0.3.21",
"ultracite": "7.9.3"
},
"overrides": {
"@types/node": "^26.1.1"
},
"browserslist": [
"chrome >= 123",
"edge >= 123",
"firefox >= 120",
"safari >= 17.5",
"ios_saf >= 17.5",
"and_chr >= 123",
"and_ff >= 120",
"samsung >= 27",
"opera >= 109"
]
}