-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.69 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": "layout-style-css",
"version": "2.1.1",
"description": "Dependency-free structural CSS for responsive wrappers, composition primitives, recipes, utilities, and layout personalities.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/Foscat/layout-style-css#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Foscat/layout-style-css.git"
},
"bugs": {
"url": "https://github.com/Foscat/layout-style-css/issues"
},
"engines": {
"node": ">=20"
},
"keywords": [
"css",
"layout",
"design-system",
"ui-style-kit-css",
"responsive-layout",
"shell-layouts"
],
"main": "dist/layout-style-css.css",
"style": "dist/layout-style-css.min.css",
"unpkg": "dist/layout-style-css.min.css",
"jsdelivr": "dist/layout-style-css.min.css",
"scripts": {
"build": "node scripts/build.mjs",
"pages:build": "node scripts/build-pages.mjs",
"lint": "stylelint \"styles/**/*.css\" \"demo/**/*.css\"",
"check:demo-js": "node --check demo/demo.js",
"test:static": "node test/layout-css-contract.test.mjs && node test/release-docs-contract.test.mjs",
"test:demo:quick": "node test/demo-smoke.test.mjs --quick --browser=chromium",
"test:demo:chromium": "node test/demo-smoke.test.mjs --browser=chromium",
"test:demo:firefox": "node test/demo-smoke.test.mjs --browser=firefox",
"test:demo:webkit": "node test/demo-smoke.test.mjs --browser=webkit",
"test:demo:all": "npm run test:demo:chromium && npm run test:demo:firefox && npm run test:demo:webkit",
"test:pages": "node test/pages-artifact.test.mjs",
"test": "npm run test:static && npm run test:demo:quick && npm run test:pages",
"test:full": "npm run test:static && npm run test:demo:all && npm run test:pages",
"check": "npm run build && npm run lint && npm run check:demo-js && npm test && npm run pack:dry-run",
"check:full": "npm run build && npm run lint && npm run check:demo-js && npm run test:full && npm run pack:dry-run",
"pack:dry-run": "npm pack --dry-run --ignore-scripts",
"publish:dry-run": "npm publish --dry-run --access public --ignore-scripts",
"release:verify": "npm run check:full && npm audit --audit-level=moderate && npm run publish:dry-run",
"prepack": "npm run build && npm run test:static",
"prepublishOnly": "npm run release:verify"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"interactive-surface-css": "1.5.0",
"stylelint": "17.14.0",
"ui-style-kit-css": "2.1.0"
},
"exports": {
".": "./dist/layout-style-css.css",
"./css": "./dist/layout-style-css.css",
"./css.css": "./dist/layout-style-css.css",
"./min": "./dist/layout-style-css.min.css",
"./min.css": "./dist/layout-style-css.min.css",
"./core.css": "./dist/core.css",
"./wrappers.css": "./dist/wrappers.css",
"./primitives.css": "./dist/primitives.css",
"./recipes.css": "./dist/recipes.css",
"./utilities.css": "./dist/utilities.css",
"./personalities.css": "./dist/personalities.css",
"./personalities/*.css": "./dist/personalities/*.css",
"./integrations/ui-style-kit.css": "./dist/integrations/ui-style-kit.css",
"./legacy.css": "./dist/legacy.css",
"./package.json": "./package.json"
},
"files": [
"dist",
"styles",
"docs/wiki",
"demo/index.html",
"demo/demo.css",
"demo/demo.js",
"demo/assets/apple-touch-icon.svg",
"demo/assets/favicon.svg",
"demo/assets/social-card.png",
"demo/browserconfig.xml",
"demo/robots.txt",
"demo/site.webmanifest",
"demo/sitemap.xml",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"LICENSE"
]
}