@urateam/dashboard 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/LICENSE +27 -0
  2. package/package.json +12 -10
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,28 +1,30 @@
1
1
  {
2
2
  "name": "@urateam/dashboard",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "dist/server.js",
6
6
  "types": "dist/server.d.ts",
7
- "files": ["dist"],
7
+ "files": [
8
+ "dist"
9
+ ],
8
10
  "repository": {
9
11
  "type": "git",
10
12
  "url": "https://github.com/JonB32/urateam.git",
11
13
  "directory": "packages/dashboard"
12
14
  },
13
- "scripts": {
14
- "build": "tsc",
15
- "test": "vitest run",
16
- "dev": "tsx watch src/server.ts"
17
- },
18
15
  "dependencies": {
19
16
  "@hono/node-server": "^1.14.0",
20
- "@urateam/core": "workspace:*",
21
17
  "drizzle-orm": "^0.38.0",
22
- "hono": "^4.7.0"
18
+ "hono": "^4.7.0",
19
+ "@urateam/core": "0.1.2"
23
20
  },
24
21
  "devDependencies": {
25
22
  "vitest": "^3.0.0",
26
23
  "typescript": "^5.7.0"
24
+ },
25
+ "scripts": {
26
+ "build": "tsc",
27
+ "test": "vitest run",
28
+ "dev": "tsx watch src/server.ts"
27
29
  }
28
- }
30
+ }