@casoon/atlas-styles 0.0.1

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/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@casoon/atlas-styles",
3
+ "version": "0.0.1",
4
+ "description": "Pure CSS design system with glass effects, gradients, and utilities for Tailwind v4",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "sideEffects": [
10
+ "./dist/**/*.css"
11
+ ],
12
+ "exports": {
13
+ ".": "./dist/index.css",
14
+ "./core": "./dist/core.css",
15
+ "./glass": "./dist/glass.css",
16
+ "./orbs": "./dist/orbs.css",
17
+ "./animations": "./dist/animations.css",
18
+ "./utilities": "./dist/utilities.css"
19
+ },
20
+ "keywords": [
21
+ "tailwind",
22
+ "css",
23
+ "glass",
24
+ "effects",
25
+ "utilities",
26
+ "v4"
27
+ ],
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/casoon/atlas.git",
31
+ "directory": "packages/styles"
32
+ },
33
+ "homepage": "https://github.com/casoon/atlas#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/casoon/atlas/issues"
36
+ },
37
+ "author": {
38
+ "name": "Jörn Seidel",
39
+ "email": "joern.seidel@casoon.de",
40
+ "url": "https://www.casoon.de"
41
+ },
42
+ "license": "MIT",
43
+ "funding": {
44
+ "type": "individual",
45
+ "url": "https://www.casoon.de"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
50
+ "scripts": {
51
+ "build": "rimraf dist && mkdir -p dist && cp src/*.css dist/",
52
+ "clean": "rimraf dist"
53
+ }
54
+ }