-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.41 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
{
"name": "document",
"version": "1.0.0",
"packageManager": "pnpm@11.4.0",
"description": "A local web-based document editor based on OnlyOffice, allowing you to edit documents directly in your browser without server-side processing, ensuring your privacy and security.",
"type": "module",
"scripts": {
"dev": "vite --host --force",
"build": "sh ./bin/build.sh",
"build:pages": "node bin/build-pages.mjs",
"sitemap:lastmod": "node bin/sitemap-lastmod.mjs",
"build:single": "node bin/bundle_single_html.js",
"preview": "vite preview",
"tsc": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test --grep-invert @serial",
"test:e2e:serial": "playwright test --grep @serial --workers=1",
"test:e2e:ui": "playwright test --ui",
"docker:build": "docker build -t document:e2e .",
"test:e2e:docker": "sh ./bin/test-e2e-docker.sh",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:ts": "oxlint && tsc --noEmit",
"lint:docker": "docker compose -f docker-compose.yaml config --quiet",
"lint": "pnpm run lint:ts && pnpm run lint:docker",
"test:e2e:corpus": "playwright test test/e2e/corpus.spec.ts"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [
"onlyoffice",
"document-editor",
"privacy",
"web-based",
"docx",
"xlsx",
"pptx",
"csv",
"wasm",
"webassembly",
"local-editor",
"browser-editor",
"document-converter",
"office-suite"
],
"author": "ranuts",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/ranuts/document.git"
},
"homepage": "https://edit.chaxus.com/",
"bugs": {
"url": "https://github.com/ranuts/document/issues"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"@vitest/coverage-v8": "^4.1.10",
"fake-indexeddb": "^6.2.5",
"jsdom": "^30.0.1",
"marked": "16.4.2",
"oxlint": "^1.78.0",
"prettier": "^3.9.6",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"dependencies": {
"@khmyznikov/pwa-install": "^0.6.4",
"@ranuts/agent-core": "workspace:*",
"@ranuts/chat-ui": "workspace:*",
"@ranuts/converter": "workspace:*",
"@ranuts/shared": "workspace:*",
"ranui": "0.5.0-alpha.3",
"ranuts": "0.4.0-alpha.5"
}
}