@elyndra/astro 1.2.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/package.json +60 -0
- package/src/index.ts +17 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elyndra/astro",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"sideEffects": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"description": "Elyndra UI components for Astro",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"elyndra",
|
|
11
|
+
"ui",
|
|
12
|
+
"front-end",
|
|
13
|
+
"framework",
|
|
14
|
+
"scifi",
|
|
15
|
+
"sci-fi",
|
|
16
|
+
"science-fiction",
|
|
17
|
+
"astro"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://elyndra.dev",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/Gabox301/elyndra.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/Gabox301/elyndra/issues"
|
|
26
|
+
},
|
|
27
|
+
"funding": "https://github.com/sponsors/romelperez",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"files": [
|
|
30
|
+
"src"
|
|
31
|
+
],
|
|
32
|
+
"exports": {
|
|
33
|
+
".": "./src/index.ts"
|
|
34
|
+
},
|
|
35
|
+
"types": "./src/index.ts",
|
|
36
|
+
"module": "./src/index.ts",
|
|
37
|
+
"main": "./src/index.ts",
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"astro": "7.3.2"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@elyndra/astro-animated": "^1.2.0",
|
|
43
|
+
"@elyndra/astro-animator": "^1.2.0",
|
|
44
|
+
"@elyndra/astro-bgs": "^1.2.0",
|
|
45
|
+
"@elyndra/astro-bleeps": "^1.2.0",
|
|
46
|
+
"@elyndra/astro-core": "^1.2.0",
|
|
47
|
+
"@elyndra/astro-effects": "^1.2.0",
|
|
48
|
+
"@elyndra/astro-frames": "^1.2.0",
|
|
49
|
+
"@elyndra/astro-text": "^1.2.0",
|
|
50
|
+
"@elyndra/astro-tools": "^1.2.0",
|
|
51
|
+
"@elyndra/core": "^1.2.0",
|
|
52
|
+
"@elyndra/styles": "^1.2.0",
|
|
53
|
+
"@elyndra/theme": "^1.2.0",
|
|
54
|
+
"@elyndra/tools": "^1.2.0",
|
|
55
|
+
"tslib": "2.8.1"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "tsc --noEmit -p tsconfig.json"
|
|
59
|
+
}
|
|
60
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Mirror composition of `packages/react/src/index.ts` as of master at
|
|
2
|
+
// implementation time: the nine framework islands in the same order, then
|
|
3
|
+
// the five vanilla packages. No `'use client'` directive: Astro islands
|
|
4
|
+
// hydrate via component `<script>` entries instead.
|
|
5
|
+
export * from '@elyndra/astro-animated';
|
|
6
|
+
export * from '@elyndra/astro-animator';
|
|
7
|
+
export * from '@elyndra/astro-bgs';
|
|
8
|
+
export * from '@elyndra/astro-bleeps';
|
|
9
|
+
export * from '@elyndra/astro-core';
|
|
10
|
+
export * from '@elyndra/astro-effects';
|
|
11
|
+
export * from '@elyndra/astro-frames';
|
|
12
|
+
export * from '@elyndra/astro-text';
|
|
13
|
+
export * from '@elyndra/astro-tools';
|
|
14
|
+
export * from '@elyndra/core';
|
|
15
|
+
export * from '@elyndra/styles';
|
|
16
|
+
export * from '@elyndra/theme';
|
|
17
|
+
export * from '@elyndra/tools';
|