sigx 0.1.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.
@@ -0,0 +1,4 @@
1
+ export * from '@sigx/reactivity';
2
+ export * from '@sigx/runtime-core';
3
+ export * from '@sigx/runtime-dom';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from '@sigx/runtime-core';
2
+ export { jsx, jsxs, jsxDEV, Fragment } from '@sigx/runtime-core';
3
+ //# sourceMappingURL=jsx-runtime.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jsx-runtime.d.ts","sourceRoot":"","sources":["../src/jsx-runtime.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC"}
package/dist/sigx.js ADDED
@@ -0,0 +1,5 @@
1
+ export * from "@sigx/reactivity"
2
+
3
+ export * from "@sigx/runtime-core"
4
+
5
+ export * from "@sigx/runtime-dom"
@@ -0,0 +1 @@
1
+ export*from"@sigx/reactivity";export*from"@sigx/runtime-core";export*from"@sigx/runtime-dom";
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "sigx",
3
+ "version": "0.1.0",
4
+ "description": "SignalX - Lightweight reactive web component framework with signals and TSX support",
5
+ "type": "module",
6
+ "main": "./dist/sigx.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/sigx.js",
11
+ "types": "./dist/index.d.ts"
12
+ },
13
+ "./jsx-runtime": {
14
+ "import": "./dist/sigx.js",
15
+ "types": "./dist/index.d.ts"
16
+ },
17
+ "./jsx-dev-runtime": {
18
+ "import": "./dist/sigx.js",
19
+ "types": "./dist/index.d.ts"
20
+ }
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "scripts": {
26
+ "build": "rolldown -c && tsc --emitDeclarationOnly",
27
+ "dev": "rolldown -c -w"
28
+ },
29
+ "keywords": [
30
+ "sigx",
31
+ "web-components",
32
+ "reactive",
33
+ "signals",
34
+ "framework",
35
+ "jsx",
36
+ "tsx",
37
+ "typescript"
38
+ ],
39
+ "author": "Andreas Ekdahl",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/signalxjs/core.git",
44
+ "directory": "packages/sigx"
45
+ },
46
+ "homepage": "https://github.com/signalxjs",
47
+ "bugs": {
48
+ "url": "https://github.com/signalxjs/core/issues"
49
+ },
50
+ "dependencies": {
51
+ "@sigx/reactivity": "^0.1.0",
52
+ "@sigx/runtime-core": "^0.1.0",
53
+ "@sigx/runtime-dom": "^0.1.0"
54
+ },
55
+ "devDependencies": {
56
+ "rolldown": "^1.0.0-beta.52",
57
+ "typescript": "^5.9.3"
58
+ }
59
+ }