-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.14 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
{
"name": "browserux.css",
"version": "4.0.0",
"description": "A modern, minimal CSS foundation focused on user experience and accessibility. Enhances native browser behaviors: dark mode, reduced motion, high contrast, forced colors, smooth scrolling, keyboard focus, form ergonomics, and more. No JavaScript, no utility classes.",
"scripts": {
"build": "node ./scripts/build.mjs",
"prepublishOnly": "npm run build",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:e2e:update": "playwright test --update-snapshots",
"test:e2e:report": "playwright show-report"
},
"main": "./browserux.css",
"style": "./browserux.css",
"sideEffects": [
"*.css",
"dist/*.css"
],
"exports": {
".": "./browserux.css",
"./browserux.css": "./browserux.css",
"./core.css": "./dist/core.css",
"./a11y.css": "./dist/a11y.css",
"./browser-ui.css": "./dist/browser-ui.css",
"./browserux.layer.css": "./dist/browserux.layer.css",
"./dist/browserux.css": "./dist/browserux.css",
"./dist/core.css": "./dist/core.css",
"./dist/a11y.css": "./dist/a11y.css",
"./dist/browser-ui.css": "./dist/browser-ui.css",
"./dist/browserux.layer.css": "./dist/browserux.layer.css"
},
"files": [
"browserux.css",
"dist"
],
"devDependencies": {
"@playwright/test": "1.55.0"
},
"keywords": [
"css",
"reset",
"normalize",
"base",
"foundation",
"accessibility",
"a11y",
"dark-mode",
"color-scheme",
"prefers-color-scheme",
"prefers-reduced-motion",
"prefers-contrast",
"forced-colors",
"high-contrast",
"ux",
"ergonomics",
"usability",
"form",
"focus-visible",
"scrollbar",
"frontend",
"minimal",
"starter",
"modular",
"design-tokens",
"no-javascript"
],
"author": "Effeilo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Effeilo/browserux.css"
}
}