busroot-sdk 0.0.7-alpha.9 → 0.0.8-dev.2691268423
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/build/index.d.ts +5694 -4099
- package/build/index.js +8324 -490
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "busroot-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8-dev.2691268423",
|
|
4
4
|
"description": "An SDK for accessing Busroot from output.industries",
|
|
5
5
|
"homepage": "https://www.output.industries",
|
|
6
6
|
"main": "./build/index.js",
|
|
@@ -9,36 +9,37 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"build"
|
|
11
11
|
],
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"chroma-js": "^3.1.2",
|
|
14
|
+
"moment-timezone": "0.6.0"
|
|
15
|
+
},
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"react": "^18.3.1 || ^19",
|
|
18
|
+
"zod": "^3.25.1"
|
|
19
|
+
},
|
|
12
20
|
"devDependencies": {
|
|
13
21
|
"@jest/globals": "^29.7.0",
|
|
14
|
-
"@types/react": "^18.0.26",
|
|
15
22
|
"@types/chroma-js": "^3.1.2",
|
|
16
|
-
"
|
|
17
|
-
"dts-bundle-generator": "^9.5.1",
|
|
18
|
-
"tsup": "^8.5.0",
|
|
19
|
-
"typescript-eslint": "^8.38.0",
|
|
20
|
-
"busroot-common": "0.0.0"
|
|
21
|
-
},
|
|
22
|
-
"dependencies": {
|
|
23
|
+
"@types/react": "^18.0.26",
|
|
23
24
|
"eslint-config-prettier": "^8.10.0",
|
|
24
25
|
"eslint-plugin-prettier": "5.5.4",
|
|
25
|
-
"chroma": "^0.0.1",
|
|
26
|
-
"chroma-js": "^3.1.2",
|
|
27
26
|
"jest": "^30.0.4",
|
|
28
|
-
"moment-timezone": "0.6.0",
|
|
29
27
|
"mqtt": "^5.14.0",
|
|
30
28
|
"react": "^18.3.1",
|
|
29
|
+
"ts-jest": "^29.4.0",
|
|
31
30
|
"ts-node": "^10.9.1",
|
|
31
|
+
"tsup": "^8.5.0",
|
|
32
32
|
"typescript": "^5.8.3",
|
|
33
|
-
"
|
|
33
|
+
"typescript-eslint": "^8.38.0",
|
|
34
|
+
"zod": "^3.25.1",
|
|
35
|
+
"busroot-common": "0.0.0"
|
|
34
36
|
},
|
|
35
37
|
"scripts": {
|
|
36
38
|
"example": "ts-node -r dotenv-expand/config ./src/example.ts",
|
|
37
39
|
"dev": "pnpm run lint && tsup --watch",
|
|
38
|
-
"build": "pnpm run lint && tsup
|
|
40
|
+
"build": "pnpm run lint && tsup",
|
|
39
41
|
"lint": "eslint 'src/**/*.ts'",
|
|
40
42
|
"lint-fix": "eslint 'src/**/*.ts' --fix",
|
|
41
|
-
"test": "jest"
|
|
42
|
-
"publish-prerelease": "pnpm run build && npm version prerelease --preid=alpha --no-workspaces-update && pnpm publish --tag next --no-git-checks"
|
|
43
|
+
"test": "jest"
|
|
43
44
|
}
|
|
44
45
|
}
|