@norskvideo/norsk-studio-alpha 1.27.0-2025-10-29-e18a341b → 1.27.0-2025-10-31-7d7337f7

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 (44) hide show
  1. package/client/info.js +29 -25
  2. package/lib/index.js.map +1 -1
  3. package/lib/info.js.map +1 -1
  4. package/lib/output.tams/_gen/types.js.map +1 -1
  5. package/lib/output.tams/info.js.map +1 -1
  6. package/lib/output.tams/inline-view.js.map +1 -1
  7. package/lib/output.tams/runtime.js.map +1 -1
  8. package/lib/processor.actionReplay/_gen/types.js.map +1 -1
  9. package/lib/processor.actionReplay/info.js.map +1 -1
  10. package/lib/processor.actionReplay/runtime.js.map +1 -1
  11. package/lib/processor.actionReplay/summary.js.map +1 -1
  12. package/lib/processor.audioLevel/_gen/types.js.map +1 -1
  13. package/lib/processor.audioLevel/info.js.map +1 -1
  14. package/lib/processor.audioLevel/inline-view.js +6 -2
  15. package/lib/processor.audioLevel/inline-view.js.map +1 -1
  16. package/lib/processor.audioLevel/runtime.js +3 -3
  17. package/lib/processor.audioLevel/runtime.js.map +1 -1
  18. package/lib/processor.audioLevel/summary-view.js.map +1 -1
  19. package/lib/processor.delayAll/_gen/types.js.map +1 -1
  20. package/lib/processor.delayAll/info.js.map +1 -1
  21. package/lib/processor.delayAll/runtime.js.map +1 -1
  22. package/lib/processor.whisper-transcribe/_gen/types.js.map +1 -1
  23. package/lib/processor.whisper-transcribe/info.js.map +1 -1
  24. package/lib/processor.whisper-transcribe/runtime.js.map +1 -1
  25. package/lib/test/output.tams.js +1 -1
  26. package/lib/test/output.tams.js.map +1 -1
  27. package/lib/util.agent/_gen/types.js.map +1 -1
  28. package/lib/util.agent/fullscreen-view.js.map +1 -1
  29. package/lib/util.agent/info.js.map +1 -1
  30. package/lib/util.agent/inline-view.js.map +1 -1
  31. package/lib/util.agent/runtime.js +1 -1
  32. package/lib/util.agent/runtime.js.map +1 -1
  33. package/lib/util.agent/summary-view.js.map +1 -1
  34. package/lib/util.agent/types.js.map +1 -1
  35. package/lib/util.aiChat/_gen/types.js.map +1 -1
  36. package/lib/util.aiChat/info.js.map +1 -1
  37. package/lib/util.aiChat/runtime.js.map +1 -1
  38. package/lib/util.aiChat/summary-view.js.map +1 -1
  39. package/lib/util.aiChat/types.js.map +1 -1
  40. package/lib/util.timestamps/_gen/types.js.map +1 -1
  41. package/lib/util.timestamps/info.js.map +1 -1
  42. package/lib/util.timestamps/inline-view.js.map +1 -1
  43. package/lib/util.timestamps/runtime.js.map +1 -1
  44. package/package.json +156 -18
package/package.json CHANGED
@@ -1,19 +1,158 @@
1
1
  {
2
2
  "name": "@norskvideo/norsk-studio-alpha",
3
- "version": "1.27.0-2025-10-29-e18a341b",
3
+ "version": "1.27.0-2025-10-31-7d7337f7",
4
4
  "description": "",
5
5
  "scripts": {
6
- "clean": "rm -rf lib client build && make clean",
7
- "types": "make -j 8",
8
- "build": "npm run build-impl || true",
9
- "build-impl": "npm run types && npx studio-wrap-infos src/ && npx npm-run-all build:* && rm -rf build",
10
- "build:server": "npx tsc",
11
- "build:client": "npx tsc -p tsconfig-client.json && npx studio-bundle build/info.js client/info.js",
12
- "build:copy-css": "rsync --mkpath -v -r --include '*/' --include '*.css' --exclude '*' src/ client/",
13
- "build:types": "../../scripts/copy-flattened-yaml.sh",
14
- "build:tailwind": "npx tailwindcss -i src/shared/tailwind.css -o client/style.css",
15
- "build:eslint": "npx eslint src",
16
- "test": "LOG_LEVEL=error mocha --no-parallel --jobs=0 --timeout 120000 --recursive lib/test"
6
+ "clean": "rm -rf lib client build .wireit && make clean",
7
+ "types": "wireit",
8
+ "wrap-infos": "wireit",
9
+ "build": "wireit",
10
+ "build:server": "wireit",
11
+ "build:client": "wireit",
12
+ "build:copy-css": "wireit",
13
+ "build:types": "wireit",
14
+ "build:tailwind": "wireit",
15
+ "lint": "wireit",
16
+ "test": "LOG_LEVEL=error mocha --no-parallel --jobs=0 --timeout 120000 --recursive lib/test",
17
+ "build:no-lint": "wireit"
18
+ },
19
+ "wireit": {
20
+ "CAUTION": {
21
+ "command": "echo This section is generated by scripts/update-multi-component-wireit.js - do not edit directly"
22
+ },
23
+ "types": {
24
+ "command": "make -j 8",
25
+ "files": [
26
+ "src/**/types.source.yaml",
27
+ "src/shared/*.source.yaml",
28
+ "Makefile"
29
+ ],
30
+ "output": [
31
+ "src/**/_gen/**"
32
+ ],
33
+ "dependencies": [
34
+ "../core:types"
35
+ ]
36
+ },
37
+ "wrap-infos": {
38
+ "command": "npx studio-wrap-infos src/",
39
+ "files": [
40
+ "src/**/info.ts"
41
+ ],
42
+ "output": [
43
+ "src/info.ts"
44
+ ],
45
+ "dependencies": [
46
+ "types"
47
+ ]
48
+ },
49
+ "build-deps": {
50
+ "dependencies": [
51
+ "wrap-infos",
52
+ "../core:build:no-lint",
53
+ "../norsk-player-react:build"
54
+ ]
55
+ },
56
+ "build": {
57
+ "dependencies": [
58
+ "lint",
59
+ "build:no-lint"
60
+ ]
61
+ },
62
+ "build:server": {
63
+ "command": "npx tsc",
64
+ "files": [
65
+ "src/**/*.ts",
66
+ "tsconfig.json"
67
+ ],
68
+ "output": [
69
+ "build/server/**"
70
+ ],
71
+ "dependencies": [
72
+ "build-deps"
73
+ ]
74
+ },
75
+ "build:client": {
76
+ "command": "npx tsc -p tsconfig-client.json && npx studio-bundle build/client/info.js client/info.js",
77
+ "files": [
78
+ "src/**/*.{ts,tsx}",
79
+ "tsconfig-client.json"
80
+ ],
81
+ "output": [
82
+ "build/client/info.js",
83
+ "client/info.js"
84
+ ],
85
+ "dependencies": [
86
+ "build-deps"
87
+ ]
88
+ },
89
+ "build:copy-css": {
90
+ "command": "rsync --mkpath -v -r --include '*/' --include '*.css' --exclude '*' src/ client/",
91
+ "files": [
92
+ "src/**/*.css"
93
+ ],
94
+ "output": [
95
+ "client/**/*.css"
96
+ ]
97
+ },
98
+ "build:types": {
99
+ "command": "../../scripts/build-helpers/copy-yaml-to-build.sh",
100
+ "files": [
101
+ "src/**/_gen/*.yaml"
102
+ ],
103
+ "output": [
104
+ "build/**/types.yaml"
105
+ ],
106
+ "dependencies": [
107
+ "types"
108
+ ]
109
+ },
110
+ "package": {
111
+ "command": "./scripts/package-lib.sh",
112
+ "files": [
113
+ "build/**",
114
+ "scripts/package-lib.sh"
115
+ ],
116
+ "output": [
117
+ "lib/**"
118
+ ],
119
+ "dependencies": [
120
+ "build:server",
121
+ "build:types"
122
+ ]
123
+ },
124
+ "build:tailwind": {
125
+ "command": "npx tailwindcss -i src/shared/tailwind.css -o client/style.css",
126
+ "files": [
127
+ "src/shared/tailwind.css",
128
+ "tailwind.config.js"
129
+ ],
130
+ "output": [
131
+ "client/style.css"
132
+ ],
133
+ "dependencies": [
134
+ "build:copy-css"
135
+ ]
136
+ },
137
+ "lint": {
138
+ "command": "npx eslint --concurrency=auto src",
139
+ "files": [
140
+ "src/**/*.{ts,tsx,js,jsx}",
141
+ "eslint.config.js"
142
+ ],
143
+ "output": [],
144
+ "dependencies": [
145
+ "types"
146
+ ]
147
+ },
148
+ "build:no-lint": {
149
+ "dependencies": [
150
+ "package",
151
+ "build:client",
152
+ "build:copy-css",
153
+ "build:tailwind"
154
+ ]
155
+ }
17
156
  },
18
157
  "files": [
19
158
  "client/*",
@@ -25,9 +164,9 @@
25
164
  "@apidevtools/json-schema-ref-parser": "^12.0.1",
26
165
  "@norskvideo/norsk-player": "1.0.4",
27
166
  "@norskvideo/norsk-player-react": "*",
28
- "@norskvideo/norsk-sdk": "^1.0.402-2025-10-29-ef469b0b",
29
- "@norskvideo/norsk-studio": "1.27.0-2025-10-29-e18a341b",
30
- "@norskvideo/norsk-studio-built-ins": "1.27.0-2025-10-29-e18a341b",
167
+ "@norskvideo/norsk-sdk": "^1.0.402-2025-10-31-001b00b5",
168
+ "@norskvideo/norsk-studio": "1.27.0-2025-10-31-7d7337f7",
169
+ "@norskvideo/norsk-studio-built-ins": "1.27.0-2025-10-31-7d7337f7",
31
170
  "@norskvideo/webrtc-client": "^0.1.2",
32
171
  "@react-icons/all-files": "^4.1.0",
33
172
  "chart.js": "^4.4.2",
@@ -56,12 +195,11 @@
56
195
  "chai": "^4.3.10",
57
196
  "esbuild": "^0.20.2",
58
197
  "esbuild-plugin-external-global": "^1.0.1",
59
- "eslint": "^8.53.0",
198
+ "eslint": "^9.19.0",
60
199
  "hls-parser": "^0.10.8",
61
200
  "mocha": "^10.4.0",
62
- "npm-run-all": "^4.1.5",
63
201
  "openapi-typescript": "^7.10.1",
64
- "puppeteer": "^21.5.2",
202
+ "puppeteer": "^24.26.1",
65
203
  "tailwindcss": "^3.4.1",
66
204
  "typescript": "^5.4.5"
67
205
  }