@hyperframes/studio-server 0.7.15
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 +190 -0
- package/dist/helpers/draftMarkers.d.ts +12 -0
- package/dist/helpers/draftMarkers.js +14 -0
- package/dist/helpers/draftMarkers.js.map +1 -0
- package/dist/helpers/finiteMutation.d.ts +11 -0
- package/dist/helpers/finiteMutation.js +29 -0
- package/dist/helpers/finiteMutation.js.map +1 -0
- package/dist/helpers/manualEditsRenderScript.d.ts +14 -0
- package/dist/helpers/manualEditsRenderScript.js +583 -0
- package/dist/helpers/manualEditsRenderScript.js.map +1 -0
- package/dist/helpers/screenshotClip.d.ts +9 -0
- package/dist/helpers/screenshotClip.js +26 -0
- package/dist/helpers/screenshotClip.js.map +1 -0
- package/dist/helpers/studioMotionRenderScript.d.ts +10 -0
- package/dist/helpers/studioMotionRenderScript.js +191 -0
- package/dist/helpers/studioMotionRenderScript.js.map +1 -0
- package/dist/index.d.ts +167 -0
- package/dist/index.js +3869 -0
- package/dist/index.js.map +1 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hyperframes/studio-server",
|
|
3
|
+
"version": "0.7.15",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/heygen-com/hyperframes",
|
|
7
|
+
"directory": "packages/studio-server"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./package.json": "./package.json",
|
|
22
|
+
"./screenshot-clip": {
|
|
23
|
+
"import": "./dist/helpers/screenshotClip.js",
|
|
24
|
+
"types": "./dist/helpers/screenshotClip.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./manual-edits-render-script": {
|
|
27
|
+
"import": "./dist/helpers/manualEditsRenderScript.js",
|
|
28
|
+
"types": "./dist/helpers/manualEditsRenderScript.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./studio-motion-render-script": {
|
|
31
|
+
"import": "./dist/helpers/studioMotionRenderScript.js",
|
|
32
|
+
"types": "./dist/helpers/studioMotionRenderScript.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./draft-markers": {
|
|
35
|
+
"import": "./dist/helpers/draftMarkers.js",
|
|
36
|
+
"types": "./dist/helpers/draftMarkers.d.ts"
|
|
37
|
+
},
|
|
38
|
+
"./finite-mutation": {
|
|
39
|
+
"import": "./dist/helpers/finiteMutation.js",
|
|
40
|
+
"types": "./dist/helpers/finiteMutation.d.ts"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"hono": "^4.0.0",
|
|
48
|
+
"linkedom": "^0.18.12",
|
|
49
|
+
"postcss": "^8.5.8",
|
|
50
|
+
"postcss-selector-parser": "^7.1.2",
|
|
51
|
+
"@hyperframes/core": "0.7.15",
|
|
52
|
+
"@hyperframes/parsers": "0.7.15"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^25.0.10",
|
|
56
|
+
"tsup": "^8.0.0",
|
|
57
|
+
"tsx": "^4.21.0",
|
|
58
|
+
"typescript": "^5.0.0",
|
|
59
|
+
"vitest": "^3.2.4"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"test": "vitest run",
|
|
64
|
+
"test:watch": "vitest",
|
|
65
|
+
"typecheck": "tsc --noEmit"
|
|
66
|
+
}
|
|
67
|
+
}
|