-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 2.45 KB
/
package.json
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
{
"name": "bolt-uxp",
"version": "0.1.31",
"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",
"connect": "cross-env ACTION=connect vite",
"disconnect": "cross-env ACTION=disconnect vite",
"ccx-install": "cross-env ACTION=install vite",
"ccx-uninstall": "cross-env 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"
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.0",
"@vitejs/plugin-vue": "^5.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vue": "^3.2.45"
},
"devDependencies": {
"@adobe/cc-ext-uxp-types": "https://github.com/justintaylor-dev/cc-ext-uxp-types.git",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@tsconfig/svelte": "^5.0.0",
"@types/node": "^20.8.7",
"@types/photoshop": "^25.0.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.8",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"npm-run-all": "^4.1.5",
"sass": "^1.69.5",
"svelte": "^4.0.5",
"svelte-check": "^3.4.6",
"svelte-preprocess": "5",
"typescript": "^5.0.2",
"vite": "^5.2.12",
"vite-uxp-plugin": "^0.1.25",
"ws": "^8.14.2"
},
"files": [
"index.html",
"package.json",
"package.react.json",
"package.svelte.json",
"package.vue.json",
"public/**/*",
"public-hybrid/**/*",
"public-zip/**/*",
"README.md",
"src/**/*",
"tsconfig.json",
"uxp.config.ts",
"vite.config.ts",
"yarn.lock",
".gitignore"
]
}