@ifso/core 0.0.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/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # ifso - decision-driven UI for the state you already have
2
+
3
+ `ifso` helps you derive one explicit result from application state, component inputs, and external services.
4
+
5
+ ## Warning
6
+
7
+ A lot of work is ahead, it's a placeholder for now.
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@ifso/core",
3
+ "version": "0.0.0",
4
+ "description": "Decision-driven UI for the state you already have",
5
+ "main": "./src/index.ts",
6
+ "types": "./src/index.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./src/index.ts",
10
+ "default": "./src/index.ts"
11
+ }
12
+ },
13
+ "files": [
14
+ "src",
15
+ "README.md"
16
+ ],
17
+ "keywords": [
18
+ "ifso",
19
+ "decision-driven",
20
+ "UI",
21
+ "state",
22
+ "conditional-ui",
23
+ "conditions",
24
+ "branching",
25
+ "branches",
26
+ "typescript",
27
+ "type-safety",
28
+ "type-safe",
29
+ "headless",
30
+ "feature-flags"
31
+ ],
32
+ "author": "Oleksandr Vanilchuk <htn.developer@gmail.com>",
33
+ "license": "ISC",
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "type": "module",
38
+ "scripts": {
39
+ "test": "echo \"No tests yet\""
40
+ }
41
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ console.log('Welcome to ifso!');