-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@zablab/solar",
"version": "0.2.26",
"description": "Solar — scene runtime bundle for the Zablab broadcast platform (Pulsar CEF + Prism webview + editor preview)",
"type": "module",
"private": true,
"main": "./dist/solar.js",
"module": "./dist/solar.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/solar.js"
},
"./style.css": "./dist/solar.css"
},
"files": [
"dist"
],
"author": {
"name": "Zablab",
"email": "wellplayedprincipale@gmail.com"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:host && node scripts/build-host-html.mjs",
"build:lib": "vite build",
"build:host": "vite build --config vite.config.host.ts",
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc -b --pretty",
"format": "prettier --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"postinstall": "node scripts/patch-lumencast-protocol.mjs",
"check:bundle": "node scripts/check-bundle-size.mjs && node scripts/check-host-bundle.mjs"
},
"dependencies": {
"@lumencast/runtime": "^0.18.2",
"@preact/signals-react": "^3.2.1",
"framer-motion": "^12.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@lumencast/protocol": "^0.18.1",
"@playwright/test": "^1.49.1",
"@tailwindcss/postcss": "^4.0.7",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"postcss": "^8.5.2",
"prettier": "^3.5.2",
"tailwindcss": "^4.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^4.1.5",
"ws": "^8.21.0"
}
}