@astuteo/breakout-grid 5.1.0
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 +223 -0
- package/breakout-grid-visualizer-lite.js +659 -0
- package/breakout-grid-visualizer.js +2523 -0
- package/craft-integration.twig +58 -0
- package/dist/_objects.breakout-grid.css +656 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astuteo/breakout-grid",
|
|
3
|
+
"version": "5.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "CSS Grid breakout layout system with visual configurator",
|
|
6
|
+
"main": "dist/_objects.breakout-grid.css",
|
|
7
|
+
"style": "dist/_objects.breakout-grid.css",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/_objects.breakout-grid.css",
|
|
10
|
+
"breakout-grid-visualizer.js",
|
|
11
|
+
"breakout-grid-visualizer-lite.js",
|
|
12
|
+
"craft-integration.twig",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./dist/_objects.breakout-grid.css",
|
|
18
|
+
"./css": "./dist/_objects.breakout-grid.css",
|
|
19
|
+
"./visualizer": "./breakout-grid-visualizer.js",
|
|
20
|
+
"./visualizer-lite": "./breakout-grid-visualizer-lite.js"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"css",
|
|
24
|
+
"grid",
|
|
25
|
+
"breakout",
|
|
26
|
+
"layout",
|
|
27
|
+
"editorial",
|
|
28
|
+
"responsive",
|
|
29
|
+
"fluid",
|
|
30
|
+
"css-grid"
|
|
31
|
+
],
|
|
32
|
+
"author": "Astuteo LLC",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/astuteo-llc/breakout-grid.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/astuteo-llc/breakout-grid/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/astuteo-llc/breakout-grid#readme",
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@tailwindcss/vite": "^4.0.0",
|
|
44
|
+
"alpinejs": "^3.14.0",
|
|
45
|
+
"tailwindcss": "^4.0.0",
|
|
46
|
+
"vite": "^6.0.0"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=14.0.0"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"demo": "vite",
|
|
53
|
+
"build": "vite build && vite build --mode lite && npm run build:css",
|
|
54
|
+
"build:css": "node scripts/build-css.js",
|
|
55
|
+
"build:full": "vite build",
|
|
56
|
+
"build:lite": "vite build --mode lite",
|
|
57
|
+
"check-version": "node scripts/check-version.js",
|
|
58
|
+
"prepublishOnly": "npm run build && npm run check-files",
|
|
59
|
+
"check-files": "npm pack --dry-run",
|
|
60
|
+
"release": "npm run build && npm run check-files",
|
|
61
|
+
"release:patch": "npm run release && npm version patch && git push && git push --tags",
|
|
62
|
+
"release:minor": "npm run release && npm version minor && git push && git push --tags",
|
|
63
|
+
"release:major": "npm run release && npm version major && git push && git push --tags"
|
|
64
|
+
}
|
|
65
|
+
}
|