@mochi-css/vanilla 3.0.1 → 4.0.2
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/dist/config/index.d.mts +78 -0
- package/dist/config/index.d.ts +78 -0
- package/dist/config/index.js +302 -0
- package/dist/config/index.mjs +284 -0
- package/dist/index.d.mts +2 -25
- package/dist/index.d.ts +3 -27
- package/dist/index.js +26 -1906
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1856
- package/dist/index.mjs.map +1 -1
- package/dist/src-CGK_rB-l.js +2011 -0
- package/dist/src-CJmAtVxm.mjs +1838 -0
- package/package.json +53 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mochi-css/vanilla",
|
|
3
3
|
"repository": "git@github.com:Niikelion/mochi-css.git",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"css-in-js",
|
|
@@ -15,14 +15,33 @@
|
|
|
15
15
|
"files": [
|
|
16
16
|
"/dist"
|
|
17
17
|
],
|
|
18
|
+
"typesVersions": {
|
|
19
|
+
"*": {
|
|
20
|
+
"config": [
|
|
21
|
+
"./dist/config/index.d.ts"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
18
25
|
"exports": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
26
|
+
".": {
|
|
27
|
+
"import": {
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
29
|
+
"import": "./dist/index.mjs"
|
|
30
|
+
},
|
|
31
|
+
"require": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"require": "./dist/index.js"
|
|
34
|
+
}
|
|
22
35
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
36
|
+
"./config": {
|
|
37
|
+
"import": {
|
|
38
|
+
"types": "./dist/config/index.d.mts",
|
|
39
|
+
"import": "./dist/config/index.mjs"
|
|
40
|
+
},
|
|
41
|
+
"require": {
|
|
42
|
+
"types": "./dist/config/index.d.ts",
|
|
43
|
+
"require": "./dist/config/index.js"
|
|
44
|
+
}
|
|
26
45
|
}
|
|
27
46
|
},
|
|
28
47
|
"scripts": {
|
|
@@ -34,8 +53,12 @@
|
|
|
34
53
|
"format": "prettier --write ."
|
|
35
54
|
},
|
|
36
55
|
"devDependencies": {
|
|
56
|
+
"@mochi-css/builder": "^4.0.0",
|
|
57
|
+
"@mochi-css/config": "^4.0.0",
|
|
58
|
+
"@mochi-css/plugins": "^4.0.0",
|
|
37
59
|
"@mochi-css/shared-config": "^2.0.0",
|
|
38
60
|
"@mochi-css/test": "^2.0.0",
|
|
61
|
+
"@swc/core": "^1.15.13",
|
|
39
62
|
"@testing-library/dom": "^10.4.1",
|
|
40
63
|
"@testing-library/react": "^16.3.2",
|
|
41
64
|
"@types/css-tree": "^2.3.10",
|
|
@@ -46,15 +69,35 @@
|
|
|
46
69
|
"css-tree": "^3.1.0",
|
|
47
70
|
"dedent": "^1.7.1",
|
|
48
71
|
"eslint": "^9.39.2",
|
|
49
|
-
"happy-dom": "^20.
|
|
72
|
+
"happy-dom": "^20.8.9",
|
|
50
73
|
"prettier": "^3.8.1",
|
|
74
|
+
"react": "^19",
|
|
51
75
|
"react-dom": "^19.2.4",
|
|
52
76
|
"typescript": "^5.9.3",
|
|
53
77
|
"vitest": "^4.0.15"
|
|
54
78
|
},
|
|
55
79
|
"dependencies": {
|
|
56
80
|
"clsx": "^2.1.1",
|
|
57
|
-
"csstype": "^3.2.3"
|
|
58
|
-
|
|
81
|
+
"csstype": "^3.2.3"
|
|
82
|
+
},
|
|
83
|
+
"peerDependencies": {
|
|
84
|
+
"@mochi-css/builder": "^4.0.0",
|
|
85
|
+
"@mochi-css/config": "^4.0.0",
|
|
86
|
+
"@mochi-css/plugins": "^4.0.0",
|
|
87
|
+
"@swc/core": "^1"
|
|
88
|
+
},
|
|
89
|
+
"peerDependenciesMeta": {
|
|
90
|
+
"@mochi-css/builder": {
|
|
91
|
+
"optional": true
|
|
92
|
+
},
|
|
93
|
+
"@mochi-css/config": {
|
|
94
|
+
"optional": true
|
|
95
|
+
},
|
|
96
|
+
"@mochi-css/plugins": {
|
|
97
|
+
"optional": true
|
|
98
|
+
},
|
|
99
|
+
"@swc/core": {
|
|
100
|
+
"optional": true
|
|
101
|
+
}
|
|
59
102
|
}
|
|
60
103
|
}
|