-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.react.jsonc
More file actions
46 lines (46 loc) · 1.58 KB
/
package.react.jsonc
File metadata and controls
46 lines (46 loc) · 1.58 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
{
"name": "bolt-uxp", // BOLT_ID_REPLACE
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "cross-env MODE=dev vite build --watch",
"build": "cross-env MODE=build vite build",
"ccx": "cross-env MODE=package vite build",
"zip": "cross-env MODE=zip vite build",
"preview": "vite preview",
// BOLT_HYBRID_START
"mac-build": "run-s mac-build-64 mac-build-arm",
"mac-build-64": "xcodebuild -project src/hybrid/mac/bolt-uxp-hybrid.xcodeproj -target x64",
"mac-build-arm": "xcodebuild -project src/hybrid/mac/bolt-uxp-hybrid.xcodeproj -target arm64",
"mac-sign": "node mac-sign.js",
"mac-build-sign": "mac-build && node mac-sign.js",
"win-build": "msbuild /p:Configuration=Release src/hybrid/win/bolt-uxp-hybrid.sln",
"win-build-debug": "msbuild /p:Configuration=Debug src/hybrid/win/bolt-uxp-hybrid.sln",
"win-sign": "node ./scripts/win-sign.js",
// BOLT_HYBRID_END
"hmr": "vite"
},
"dependencies": {
"comlink": "^4.4.2", // BOLT_WEBVIEW_ONLY
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"@vitejs/plugin-react": "^4.5.1",
"@adobe/cc-ext-uxp-types": "https://github.com/justintaylor-dev/cc-ext-uxp-types.git",
"@types/node": "^20.8.7",
"@types/photoshop": "^25.0.2",
"@types/ws": "^8.5.8",
"cross-env": "^7.0.3",
"sass": "^1.69.5",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"ws": "^8.14.2",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"dotenv": "^16.4.5",
"vite-uxp-plugin": "^1.2.5"
}
}