fresh-normalize 0.0.0-semantic
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +164 -0
- package/dist/fresh-normalize.min.css +1 -0
- package/fresh-normalize.css +1130 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fresh-normalize",
|
|
3
|
+
"version": "0.0.0-semantic",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A fresh, modern CSS normalization library. Targets evergreen browsers with CSS custom properties, dark mode, accessibility, and motion preferences built-in.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Jubayer Hossain",
|
|
8
|
+
"email": "jubayerhossainbook@gmail.com",
|
|
9
|
+
"url": "https://github.com/jubayerhossaindev"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/jubayerhossaindev/fresh-normalize.git"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/jubayerhossaindev/fresh-normalize#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/jubayerhossaindev/fresh-normalize/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"css",
|
|
22
|
+
"normalize",
|
|
23
|
+
"reset",
|
|
24
|
+
"modern-css",
|
|
25
|
+
"accessibility",
|
|
26
|
+
"dark-mode",
|
|
27
|
+
"evergreen",
|
|
28
|
+
"postcss",
|
|
29
|
+
"browser-reset",
|
|
30
|
+
"base-styles",
|
|
31
|
+
"starter-kit",
|
|
32
|
+
"performance",
|
|
33
|
+
"prefers-reduced-motion",
|
|
34
|
+
"css-variables",
|
|
35
|
+
"design-system",
|
|
36
|
+
"boilerplate",
|
|
37
|
+
"opinionated-reset",
|
|
38
|
+
"a11y",
|
|
39
|
+
"web-standards",
|
|
40
|
+
"minimalist",
|
|
41
|
+
"zero-runtime"
|
|
42
|
+
],
|
|
43
|
+
"sideEffects": false,
|
|
44
|
+
"files": [
|
|
45
|
+
"fresh-normalize.css",
|
|
46
|
+
"dist/",
|
|
47
|
+
"README.md",
|
|
48
|
+
"LICENSE"
|
|
49
|
+
],
|
|
50
|
+
"main": "fresh-normalize.css",
|
|
51
|
+
"style": "fresh-normalize.css",
|
|
52
|
+
"exports": {
|
|
53
|
+
".": "./fresh-normalize.css",
|
|
54
|
+
"./style": "./fresh-normalize.css"
|
|
55
|
+
},
|
|
56
|
+
"publishConfig": {
|
|
57
|
+
"access": "public"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=20"
|
|
61
|
+
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"dev": "http-server . --cors -p 8080",
|
|
64
|
+
"build": "pnpm run build:minify && pnpm run build:analyze",
|
|
65
|
+
"build:minify": "cleancss -o dist/fresh-normalize.min.css fresh-normalize.css",
|
|
66
|
+
"build:analyze": "node scripts/analyze.js",
|
|
67
|
+
"format": "prettier --write \"**/*.{css,js,ts,json,md,yml}\"",
|
|
68
|
+
"format:check": "prettier --check \"**/*.{css,js,ts,json,md,yml}\"",
|
|
69
|
+
"lint": "pnpm run lint:eslint && pnpm run lint:stylelint",
|
|
70
|
+
"lint:eslint": "eslint .",
|
|
71
|
+
"lint:stylelint": "stylelint fresh-normalize.css",
|
|
72
|
+
"lint:fix": "pnpm run lint:eslint -- --fix && pnpm run lint:stylelint -- --fix",
|
|
73
|
+
"lint:markdown": "markdownlint-cli2 --config .markdownlint.json \"**/*.md\" --ignore node_modules",
|
|
74
|
+
"test": "vitest run --coverage",
|
|
75
|
+
"test:unit": "vitest run --coverage --reporter=verbose",
|
|
76
|
+
"test:e2e": "playwright test test/e2e",
|
|
77
|
+
"test:all": "pnpm run test:unit && pnpm run test:e2e",
|
|
78
|
+
"typecheck": "tsc --noEmit",
|
|
79
|
+
"validate": "pnpm run lint && pnpm run format:check && pnpm run validate:css && pnpm run typecheck",
|
|
80
|
+
"validate:css": "node scripts/validate-css.js",
|
|
81
|
+
"prepare": "husky",
|
|
82
|
+
"act:ci": "act -W .github/workflows/ci.yml -s GITHUB_TOKEN=$(gh auth token)",
|
|
83
|
+
"act:all": "act -s GITHUB_TOKEN=$(gh auth token) --reuse"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@commitlint/cli": "^20.5.0",
|
|
87
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
88
|
+
"@dagger.io/dagger": "^0.20.3",
|
|
89
|
+
"@eslint/js": "^10.0.1",
|
|
90
|
+
"@playwright/test": "^1.58.2",
|
|
91
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
92
|
+
"@semantic-release/git": "^10.0.1",
|
|
93
|
+
"@semantic-release/github": "^12.0.6",
|
|
94
|
+
"@semantic-release/npm": "^13.1.5",
|
|
95
|
+
"@types/node": "^25.5.0",
|
|
96
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
97
|
+
"clean-css-cli": "^5.6.3",
|
|
98
|
+
"eslint": "^10.1.0",
|
|
99
|
+
"http-server": "^14.1.1",
|
|
100
|
+
"husky": "^9.1.7",
|
|
101
|
+
"js-yaml": "^4.1.1",
|
|
102
|
+
"lint-staged": "^16.4.0",
|
|
103
|
+
"markdownlint-cli2": "^0.22.0",
|
|
104
|
+
"prettier": "^3.8.1",
|
|
105
|
+
"semantic-release": "^25.0.3",
|
|
106
|
+
"stylelint": "^17.6.0",
|
|
107
|
+
"stylelint-config-standard": "^40.0.0",
|
|
108
|
+
"stylelint-order": "^8.1.1",
|
|
109
|
+
"taze": "^19.10.0",
|
|
110
|
+
"tsx": "^4.21.0",
|
|
111
|
+
"typescript": "^6.0.2",
|
|
112
|
+
"typescript-eslint": "^8.57.2",
|
|
113
|
+
"vitest": "^4.1.2"
|
|
114
|
+
},
|
|
115
|
+
"lint-staged": {
|
|
116
|
+
"*.css": [
|
|
117
|
+
"stylelint --fix",
|
|
118
|
+
"prettier --write"
|
|
119
|
+
],
|
|
120
|
+
"*.{js,ts}": [
|
|
121
|
+
"eslint --fix",
|
|
122
|
+
"prettier --write"
|
|
123
|
+
],
|
|
124
|
+
"*.md": [
|
|
125
|
+
"markdownlint-cli2 --fix",
|
|
126
|
+
"prettier --write"
|
|
127
|
+
],
|
|
128
|
+
"*.{json,yml}": [
|
|
129
|
+
"prettier --write"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
"packageManager": "pnpm@10.33.0"
|
|
133
|
+
}
|