@rimelight/ui 0.0.1 → 0.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/package.json +49 -49
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@rimelight/ui",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Rimelight UI Library.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Daniel Marchi",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"./
|
|
17
|
-
"./
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"src",
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@rimelight/ui",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Rimelight UI Library.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Daniel Marchi",
|
|
7
|
+
"files": [
|
|
8
|
+
"src",
|
|
9
|
+
"i18n-data.json",
|
|
10
|
+
"worker-configuration.d.ts",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"exports": {
|
|
16
|
+
"./components/*": "./src/components/*",
|
|
17
|
+
"./config": "./src/config/index.ts",
|
|
18
|
+
"./config/*": "./src/config/*",
|
|
19
|
+
"./domain": "./src/domain/index.ts",
|
|
20
|
+
"./domain/*": "./src/domain/*",
|
|
21
|
+
"./lib": "./src/lib/index.ts",
|
|
22
|
+
"./lib/*": "./src/lib/*",
|
|
23
|
+
"./utils": "./src/utils/index.ts",
|
|
24
|
+
"./utils/*": "./src/utils/*",
|
|
25
|
+
"./*": "./src/*"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"css-variants": "2.3.5",
|
|
32
|
+
"embla-carousel": "8.6.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@astrojs/check": "0.9.8",
|
|
36
|
+
"@types/node": "25.5.2",
|
|
37
|
+
"astro": "6.1.4",
|
|
38
|
+
"typescript": "6.0.2",
|
|
39
|
+
"vite-plus": "0.1.15",
|
|
40
|
+
"wrangler": "4.80.0"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"astro": ">=6.0.0"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"generate:config": "vp config",
|
|
47
|
+
"dev": "astro dev"
|
|
48
|
+
}
|
|
49
|
+
}
|