-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.52 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
{
"name": "officedex",
"version": "0.5.43",
"description": "The AI desktop workspace for documents, slides, and spreadsheets. Wails v2 + React 19 client for OfficeCLI.",
"license": "GPL-3.0-only",
"homepage": "https://github.com/officecli/officedex#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/officecli/officedex.git"
},
"bugs": {
"url": "https://github.com/officecli/officedex/issues"
},
"type": "module",
"officecliVersion": "0.2.117",
"scripts": {
"prefetch:officecli": "node scripts/fetch-officecli.mjs",
"predev": "npm run prefetch:officecli",
"prebuild": "npm run prefetch:officecli",
"dev": "wails dev",
"dev:browser": "vite --host=0.0.0.0 --port=3100",
"bundle:officecli:mac": "node scripts/codesign-bundled-officecli.mjs --app build/bin/OfficeDex.app --source build/officecli/officecli",
"build": "wails build -ldflags \"-X main.appVersion=$(node -p 'require(`./package.json`).version')\" && npm run bundle:officecli:mac",
"dist:mac": "npm run prefetch:officecli && wails build -ldflags \"-X main.appVersion=$(node -p 'require(`./package.json`).version')\" && node scripts/bundle-runtime.mjs && npm run bundle:officecli:mac && node scripts/notarize.mjs build/bin/OfficeDex.app",
"dist:win": "npm run prefetch:officecli && wails build -platform windows/amd64 -ldflags \"-X main.appVersion=$(node -p 'require(`./package.json`).version')\"",
"test": "vitest run",
"test:all": "npm run lint && npx vitest run && go test ./... -count=1 && npm run test:e2e",
"test:e2e": "node scripts/run-real-e2e.mjs",
"test:e2e:real": "node scripts/run-real-e2e.mjs",
"test:e2e:list": "node scripts/run-real-e2e.mjs --list",
"test:e2e:headed": "node scripts/run-real-e2e.mjs --headed",
"test:e2e:install": "playwright install chromium",
"lint": "tsc --noEmit"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@tanstack/react-query": "^5.66.9",
"antd": "^6.4.2",
"clsx": "^2.1.1",
"docx-preview": "^0.3.7",
"lucide-react": "^0.546.0",
"pdfjs-dist": "^3.11.174",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^5.0.4",
"jsdom": "^26.1.0",
"typescript": "^5.7.3",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}