@urateam/dashboard 0.1.1 → 0.1.4
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/LICENSE +27 -0
- package/package.json +9 -9
package/LICENSE
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Business Source License 1.1
|
|
2
|
+
|
|
3
|
+
Parameters
|
|
4
|
+
|
|
5
|
+
Licensor: Jon Becker
|
|
6
|
+
Licensed Work: urateam
|
|
7
|
+
The Licensed Work is (c) 2026 Jon Becker.
|
|
8
|
+
Additional Use Grant: You may make use of the Licensed Work, provided that
|
|
9
|
+
you do not use the Licensed Work for a Managed Service.
|
|
10
|
+
A "Managed Service" is a commercial offering that allows
|
|
11
|
+
third parties to access the functionality of the Licensed
|
|
12
|
+
Work by performing an action directly or indirectly that
|
|
13
|
+
would otherwise violate the licensor's rights.
|
|
14
|
+
Change Date: 2030-04-11
|
|
15
|
+
Change License: Apache License, Version 2.0
|
|
16
|
+
|
|
17
|
+
For information about alternative licensing arrangements for the Licensed Work,
|
|
18
|
+
please contact licensing@urateam.dev.
|
|
19
|
+
|
|
20
|
+
Notice
|
|
21
|
+
|
|
22
|
+
Business Source License 1.1 (BUSL-1.1)
|
|
23
|
+
https://mariadb.com/bsl11/
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@urateam/dashboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"types": "dist/server.d.ts",
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
"url": "https://github.com/JonB32/urateam.git",
|
|
13
13
|
"directory": "packages/dashboard"
|
|
14
14
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsc",
|
|
17
|
-
"test": "vitest run",
|
|
18
|
-
"dev": "tsx watch src/server.ts"
|
|
19
|
-
},
|
|
20
15
|
"dependencies": {
|
|
21
16
|
"@hono/node-server": "^1.14.0",
|
|
22
|
-
"@urateam/core": "workspace:*",
|
|
23
17
|
"drizzle-orm": "^0.38.0",
|
|
24
|
-
"hono": "^4.7.0"
|
|
18
|
+
"hono": "^4.7.0",
|
|
19
|
+
"@urateam/core": "0.1.4"
|
|
25
20
|
},
|
|
26
21
|
"devDependencies": {
|
|
27
22
|
"vitest": "^3.0.0",
|
|
28
23
|
"typescript": "^5.7.0"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsc",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"dev": "tsx watch src/server.ts"
|
|
29
29
|
}
|
|
30
|
-
}
|
|
30
|
+
}
|