foldkit 0.1.0-canary.10
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 +91 -0
- package/dist/core/fieldValidation.d.ts +62 -0
- package/dist/core/fieldValidation.d.ts.map +1 -0
- package/dist/core/fieldValidation.js +54 -0
- package/dist/core/fold.d.ts +12 -0
- package/dist/core/fold.d.ts.map +1 -0
- package/dist/core/fold.js +9 -0
- package/dist/core/html.d.ts +366 -0
- package/dist/core/html.d.ts.map +1 -0
- package/dist/core/html.js +311 -0
- package/dist/core/navigation.d.ts +7 -0
- package/dist/core/navigation.d.ts.map +1 -0
- package/dist/core/navigation.js +12 -0
- package/dist/core/parser.d.ts +133 -0
- package/dist/core/parser.d.ts.map +1 -0
- package/dist/core/parser.js +177 -0
- package/dist/core/route.d.ts +2 -0
- package/dist/core/route.d.ts.map +1 -0
- package/dist/core/route.js +1 -0
- package/dist/core/runtime/addNavigationEventListeners.d.ts +4 -0
- package/dist/core/runtime/addNavigationEventListeners.d.ts.map +1 -0
- package/dist/core/runtime/addNavigationEventListeners.js +59 -0
- package/dist/core/runtime/index.d.ts +2 -0
- package/dist/core/runtime/index.d.ts.map +1 -0
- package/dist/core/runtime/index.js +1 -0
- package/dist/core/runtime/runtime.d.ts +60 -0
- package/dist/core/runtime/runtime.d.ts.map +1 -0
- package/dist/core/runtime/runtime.js +109 -0
- package/dist/core/schema.d.ts +37 -0
- package/dist/core/schema.d.ts.map +1 -0
- package/dist/core/schema.js +16 -0
- package/dist/core/urlRequest.d.ts +30 -0
- package/dist/core/urlRequest.d.ts.map +1 -0
- package/dist/core/urlRequest.js +13 -0
- package/dist/core/vdom.d.ts +5 -0
- package/dist/core/vdom.d.ts.map +1 -0
- package/dist/core/vdom.js +10 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "foldkit",
|
|
3
|
+
"version": "0.1.0-canary.10",
|
|
4
|
+
"description": "Elm-inspired UI framework powered by Effect",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./html": {
|
|
15
|
+
"types": "./dist/core/html.d.ts",
|
|
16
|
+
"import": "./dist/core/html.js"
|
|
17
|
+
},
|
|
18
|
+
"./navigation": {
|
|
19
|
+
"types": "./dist/core/navigation.d.ts",
|
|
20
|
+
"import": "./dist/core/navigation.js"
|
|
21
|
+
},
|
|
22
|
+
"./route": {
|
|
23
|
+
"types": "./dist/core/route.d.ts",
|
|
24
|
+
"import": "./dist/core/route.js"
|
|
25
|
+
},
|
|
26
|
+
"./runtime": {
|
|
27
|
+
"types": "./dist/core/runtime/index.d.ts",
|
|
28
|
+
"import": "./dist/core/runtime/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./fold": {
|
|
31
|
+
"types": "./dist/core/fold.d.ts",
|
|
32
|
+
"import": "./dist/core/fold.js"
|
|
33
|
+
},
|
|
34
|
+
"./fieldValidation": {
|
|
35
|
+
"types": "./dist/core/fieldValidation.d.ts",
|
|
36
|
+
"import": "./dist/core/fieldValidation.js"
|
|
37
|
+
},
|
|
38
|
+
"./schema": {
|
|
39
|
+
"types": "./dist/core/schema.d.ts",
|
|
40
|
+
"import": "./dist/core/schema.js"
|
|
41
|
+
},
|
|
42
|
+
"./urlRequest": {
|
|
43
|
+
"types": "./dist/core/urlRequest.d.ts",
|
|
44
|
+
"import": "./dist/core/urlRequest.js"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist"
|
|
49
|
+
],
|
|
50
|
+
"scripts": {
|
|
51
|
+
"clean": "rimraf dist *.tsbuildinfo",
|
|
52
|
+
"build": "pnpm run clean && tsc -b",
|
|
53
|
+
"watch": "tsc -b --watch",
|
|
54
|
+
"typecheck": "tsc -b --noEmit"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"effect": "^3.18.2"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"effect": "^3.18.2",
|
|
61
|
+
"typescript": "^5.4.0"
|
|
62
|
+
},
|
|
63
|
+
"keywords": [
|
|
64
|
+
"effect",
|
|
65
|
+
"ui",
|
|
66
|
+
"elm",
|
|
67
|
+
"functional",
|
|
68
|
+
"typescript"
|
|
69
|
+
],
|
|
70
|
+
"author": "Devin Jameson",
|
|
71
|
+
"license": "MIT",
|
|
72
|
+
"repository": {
|
|
73
|
+
"type": "git",
|
|
74
|
+
"url": "https://github.com/devinjameson/foldkit.git",
|
|
75
|
+
"directory": "packages/foldkit"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@effect/platform-browser": "^0.72.0",
|
|
79
|
+
"snabbdom": "^3.6.2"
|
|
80
|
+
},
|
|
81
|
+
"publishConfig": {
|
|
82
|
+
"access": "public"
|
|
83
|
+
},
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=18.0.0"
|
|
86
|
+
}
|
|
87
|
+
}
|