-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "document",
"version": "1.0.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",
"format": "prettier --write .",
"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"
},
"packageManager": "pnpm@10.28.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": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.5",
"oxlint": "^1.38.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@khmyznikov/pwa-install": "^0.6.3",
"ranui": "0.1.10-alpha-27",
"ranuts": "0.1.0-alpha-23"
}
}