@agent-native/scheduling 0.1.20 → 0.1.21
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/scheduling",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"description": "Scheduling primitives for agent-native apps — event types, availability, bookings, team scheduling, workflows, and routing forms.",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -52,19 +52,19 @@
|
|
|
52
52
|
"nanoid": "^5.1.9",
|
|
53
53
|
"rrule": "^2.8.1",
|
|
54
54
|
"zod": "^4.3.6",
|
|
55
|
-
"@agent-native/toolkit": "0.4.
|
|
55
|
+
"@agent-native/toolkit": "0.4.3"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@libsql/client": "^0.15.8",
|
|
59
59
|
"@tabler/icons-react": "^3.0.0",
|
|
60
60
|
"@types/node": "^24.2.1",
|
|
61
61
|
"@types/react": "^19.2.14",
|
|
62
|
-
"@typescript/native-preview": "7.0.0-dev.20260624.1",
|
|
63
62
|
"drizzle-orm": "^0.45.2",
|
|
64
63
|
"react": "^19.2.5",
|
|
65
|
-
"typescript": "
|
|
64
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
65
|
+
"typescript-7": "npm:typescript@^7.0.2",
|
|
66
66
|
"vitest": "^4.1.5",
|
|
67
|
-
"@agent-native/core": "0.
|
|
67
|
+
"@agent-native/core": "0.91.2"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@agent-native/core": ">=0.8.0",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"scripts": {
|
|
88
|
-
"build": "
|
|
89
|
-
"dev": "
|
|
90
|
-
"typecheck": "
|
|
88
|
+
"build": "tsc && node scripts/build-llms-full.mjs",
|
|
89
|
+
"dev": "tsc --watch",
|
|
90
|
+
"typecheck": "tsc --noEmit",
|
|
91
91
|
"test": "vitest --run"
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* *build time* by the consumer's bundler (Vite / React Router) using the
|
|
7
7
|
* template's `tsconfig.json` `paths` setting.
|
|
8
8
|
*
|
|
9
|
-
* The package itself doesn't have access to that alias during `
|
|
9
|
+
* The package itself doesn't have access to that alias during `tsc`
|
|
10
10
|
* compilation, so we declare broad shapes here to make the compiler happy
|
|
11
11
|
* without coupling the package to a specific shadcn version. Runtime
|
|
12
12
|
* behaviour is driven entirely by the consumer's actual shadcn modules.
|