forked from baotlake/office-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.17 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.17 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "inled-insuite",
"version": "0.1.0",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"svgr": "npx @svgr/cli --out-dir components/svg --typescript -- public/svg",
"setup:local": "DS_VERSION=9.3.1 && HASH=1 && ASSET_DIR=public/v${DS_VERSION}-${HASH} && mkdir -p $ASSET_DIR && docker run --rm -v \"$(pwd)/$ASSET_DIR:/tmp/out\" onlyoffice/documentserver:$DS_VERSION bash -c \"documentserver-generate-allfonts.sh false && cp -r /var/www/onlyoffice/documentserver/sdkjs /tmp/out/ && cp -r /var/www/onlyoffice/documentserver/web-apps /tmp/out/ && cp -r /var/www/onlyoffice/documentserver/fonts /tmp/out/ && cp /var/www/onlyoffice/documentserver/web-apps/apps/api/documents/api.js.tpl /tmp/out/web-apps/apps/api/documents/api.js\"",
"pages:dev": "npx wrangler pages dev ./out",
"deploy": "pnpm build && npx wrangler pages deploy ./out --project-name=inled-insuite",
"deploy:full": "pnpm setup:local && pnpm build && npx wrangler pages deploy ./out --project-name=inled-insuite",
"deploy:preview": "pnpm build && npx wrangler pages deploy ./out --project-name=inled-insuite --branch=preview",
"electron:dev": "concurrently \"next dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "pnpm build && electron-builder"
},
"build": {
"appId": "com.inled.insuite",
"productName": "InSuite Office",
"directories": {
"output": "dist"
},
"files": [
"out/**/*",
"electron/**/*",
"package.json"
],
"fileAssociations": [
{
"ext": "docx",
"name": "Word Document",
"role": "Editor"
},
{
"ext": "xlsx",
"name": "Excel Spreadsheet",
"role": "Editor"
},
{
"ext": "pptx",
"name": "PowerPoint Presentation",
"role": "Editor"
},
{
"ext": "pdf",
"name": "PDF Document",
"role": "Editor"
}
],
"mac": {
"category": "public.app-category.productivity"
}
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@uppy/core": "^5.2.0",
"@uppy/dashboard": "^5.1.0",
"@uppy/drag-drop": "^5.1.0",
"@uppy/dropbox": "^5.1.0",
"@uppy/google-drive": "^5.1.0",
"@uppy/onedrive": "^5.1.0",
"@uppy/react": "^5.1.1",
"@ziziyi/utils": "^1.0.2",
"clsx": "^2.1.1",
"eventemitter3": "^5.0.1",
"idb": "^8.0.3",
"lucide-react": "^0.562.0",
"mitt": "^3.0.1",
"next": "16.1.6",
"next-intl": "^4.7.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"electron": "^41.3.0",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"wait-on": "^9.0.5"
}
}