-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.48 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
{
"name": "css-tags",
"version": "0.1.0",
"description": "Token-first CSS for semantic HTML, custom tags, data attributes, and class hosts.",
"keywords": [
"css",
"design-system",
"semantic-html",
"custom-elements",
"css-framework",
"oklch",
"components"
],
"homepage": "https://doeixd.github.io/CSS-Tags/",
"bugs": {
"url": "https://github.com/doeixd/CSS-Tags/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doeixd/CSS-Tags.git"
},
"license": "MIT",
"author": "Patrick Glenn <doeixd@gmail.com>",
"type": "module",
"style": "index.css",
"types": "types/css-tags.d.ts",
"exports": {
".": {
"types": "./types/css-tags.d.ts",
"default": "./index.css"
},
"./index.css": "./index.css",
"./types": "./types/css-tags.d.ts",
"./components/*": "./components/*",
"./core/*": "./core/*",
"./layouts/*": "./layouts/*",
"./themes/*": "./themes/*",
"./utilities/*": "./utilities/*",
"./carousel.js": "./carousel.js",
"./view-transition.js": "./view-transition.js",
"./theme-generator.css": "./theme-generator.css"
},
"files": [
"index.css",
"components",
"core",
"layouts",
"themes",
"utilities",
"types/css-tags.d.ts",
"carousel.js",
"view-transition.js",
"theme-generator.css"
],
"sideEffects": [
"*.css",
"**/*.css"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}