-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.73 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.73 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
77
78
79
80
81
82
83
84
85
86
{
"name": "bolt-uxp",
"version": "1.2.11",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyperbrew/bolt-uxp.git"
},
"homepage": "https://github.com/hyperbrew/bolt-uxp",
"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",
"check": "svelte-check --tsconfig ./tsconfig.json",
"hmr": "vite",
"serve": "npx serve dist",
"connect": "cross-env BOLT_ACTION=connect vite",
"disconnect": "cross-env BOLT_ACTION=disconnect vite",
"ccx-install": "cross-env BOLT_ACTION=install vite",
"ccx-uninstall": "cross-env BOLT_ACTION=uninstall vite",
"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 ./scripts/mac-sign.js",
"mac-build-sign": "mac-build && node ./scripts/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",
"dep": "cross-env BOLT_ACTION=dependencyCheck vite"
},
"dependencies": {
"comlink": "^4.4.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vue": "^3.5.17"
},
"devDependencies": {
"@adobe/cc-ext-uxp-types": "https://github.com/justintaylor-dev/cc-ext-uxp-types.git",
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^20.8.7",
"@types/photoshop": "^25.0.2",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/ws": "^8.5.8",
"@vitejs/plugin-react": "^4.5.1",
"@vitejs/plugin-vue": "^5.2.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"npm-run-all": "^4.1.5",
"sass": "^1.69.5",
"source-map": "^0.7.4",
"svelte": "^5.33.14",
"svelte-check": "^4.2.1",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-uxp-plugin": "^1.2.5",
"ws": "^8.14.2"
},
"files": [
"index.html",
"package.json",
"package.react.jsonc",
"package.svelte.jsonc",
"package.vue.jsonc",
"public/**/*",
"public-hybrid/**/*",
"public-zip/**/*",
"webview-ui/**/*",
"README.md",
"src/**/*",
"tsconfig.json",
"tsconfig.react.json",
"tsconfig.svelte.json",
"tsconfig.vue.json",
"uxp.config.ts",
"vite.config.ts",
"yarn.lock",
".gitignore",
".npmignore"
]
}