-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"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: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",
"test:e2e:ui": "playwright test --ui",
"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"
},
"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://ranuts.github.io/document/",
"bugs": {
"url": "https://github.com/ranuts/document/issues"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"jsdom": "^29.1.1",
"oxlint": "^1.67.0",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"dependencies": {
"@khmyznikov/pwa-install": "^0.6.3",
"ranui": "0.1.10-alpha-27",
"ranuts": "0.1.0-alpha-23"
}
}