tailorkit 0.1.0-beta.2 → 0.1.0-beta.3
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/dist/app-config.d.ts +2 -0
- package/dist/app-config.d.ts.map +1 -0
- package/dist/app-config.js +1 -0
- package/dist/app.d.ts +2 -0
- package/dist/app.d.ts.map +1 -0
- package/dist/app.js +1 -0
- package/package.json +18 -6
- package/src/app-config.ts +1 -0
- package/src/app.ts +1 -0
- package/src/arktype.ts +2 -0
- package/src/index.ts +13 -0
- package/src/react.ts +2 -0
- package/src/server.ts +10 -0
- package/src/valibot.ts +2 -0
- package/src/zod.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-config.d.ts","sourceRoot":"","sources":["../src/app-config.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"@tailorkit/app/config";
|
package/dist/app.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../src/app.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
|
package/dist/app.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export*from"@tailorkit/app";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailorkit",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.3",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"bin",
|
|
15
|
-
"dist"
|
|
15
|
+
"dist",
|
|
16
|
+
"src"
|
|
16
17
|
],
|
|
17
18
|
"type": "module",
|
|
18
19
|
"imports": {
|
|
@@ -40,6 +41,16 @@
|
|
|
40
41
|
"types": "./dist/react.d.ts",
|
|
41
42
|
"import": "./dist/react.js"
|
|
42
43
|
},
|
|
44
|
+
"./app": {
|
|
45
|
+
"development": "./src/app.ts",
|
|
46
|
+
"types": "./dist/app.d.ts",
|
|
47
|
+
"import": "./dist/app.js"
|
|
48
|
+
},
|
|
49
|
+
"./app/config": {
|
|
50
|
+
"development": "./src/app-config.ts",
|
|
51
|
+
"types": "./dist/app-config.d.ts",
|
|
52
|
+
"import": "./dist/app-config.js"
|
|
53
|
+
},
|
|
43
54
|
"./zod": {
|
|
44
55
|
"development": "./src/zod.ts",
|
|
45
56
|
"types": "./dist/zod.d.ts",
|
|
@@ -60,9 +71,10 @@
|
|
|
60
71
|
"access": "public"
|
|
61
72
|
},
|
|
62
73
|
"dependencies": {
|
|
63
|
-
"@tailorkit/
|
|
64
|
-
"@tailorkit/
|
|
65
|
-
"@tailorkit/
|
|
74
|
+
"@tailorkit/app": "0.1.0-beta.3",
|
|
75
|
+
"@tailorkit/cli": "0.1.0-beta.3",
|
|
76
|
+
"@tailorkit/core": "0.1.0-beta.3",
|
|
77
|
+
"@tailorkit/react": "0.1.0-beta.3"
|
|
66
78
|
},
|
|
67
79
|
"devDependencies": {
|
|
68
80
|
"@tailorkit/config": "0.0.0",
|
|
@@ -87,7 +99,7 @@
|
|
|
87
99
|
}
|
|
88
100
|
},
|
|
89
101
|
"scripts": {
|
|
90
|
-
"build": "tsup ./src/index.ts ./src/server.ts ./src/react.ts ./src/zod.ts ./src/valibot.ts ./src/arktype.ts --out-dir ./dist --format esm --target node20 --minify --clean && tsc -p tsconfig.build.json",
|
|
102
|
+
"build": "tsup ./src/index.ts ./src/server.ts ./src/react.ts ./src/app.ts ./src/app-config.ts ./src/zod.ts ./src/valibot.ts ./src/arktype.ts --out-dir ./dist --format esm --target node20 --minify --clean && tsc -p tsconfig.build.json",
|
|
91
103
|
"check-types": "tsc --noEmit"
|
|
92
104
|
}
|
|
93
105
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@tailorkit/app/config";
|
package/src/app.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@tailorkit/app";
|
package/src/arktype.ts
ADDED
package/src/index.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export { createActions } from "@tailorkit/core/schema";
|
|
2
|
+
export { createTailorKitServer as createTailorKit } from "@tailorkit/core/server";
|
|
3
|
+
export type {
|
|
4
|
+
Action,
|
|
5
|
+
Actions,
|
|
6
|
+
Component,
|
|
7
|
+
Components,
|
|
8
|
+
Screen,
|
|
9
|
+
Screens,
|
|
10
|
+
TailorKit,
|
|
11
|
+
TailorKitTheme,
|
|
12
|
+
} from "@tailorkit/core/schema";
|
|
13
|
+
export type { TailorKitServer, TailorKitServerOptions } from "@tailorkit/core/server/types";
|
package/src/react.ts
ADDED
package/src/server.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { createTailorKitClient, createTailorKitServer as tailorKit } from "@tailorkit/core/server";
|
|
2
|
+
export type { TailorKitRouter, TailorKitRouterClient } from "@tailorkit/core/server";
|
|
3
|
+
export type {
|
|
4
|
+
TailorKitHandlerContext,
|
|
5
|
+
TailorKitHandlerOptions,
|
|
6
|
+
TailorKitHostContext,
|
|
7
|
+
TailorKitPlatformOptions,
|
|
8
|
+
TailorKitServer,
|
|
9
|
+
TailorKitServerOptions,
|
|
10
|
+
} from "@tailorkit/core/server/types";
|
package/src/valibot.ts
ADDED
package/src/zod.ts
ADDED