generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 3.29 KB
/
package.json
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
98
99
100
101
102
103
104
{
"name": "univer",
"type": "module",
"version": "1.1.5",
"packageManager": "pnpm@9.4.0",
"description": "Create, edit, and view spreadsheets and documents in various formats like Excel and Word directly within your knowledge base.",
"author": "DreamNum",
"license": "Apache-2.0",
"keywords": [
"univer",
"word",
"excel",
"spreadsheet",
"document"
],
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"prepare": "simple-git-hooks",
"dev": "vite build --watch",
"build": "vite build",
"release": "release-it",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@univerjs-pro/collaboration": "^0.2.14",
"@univerjs-pro/exchange-client": "^0.2.14",
"@univerjs/core": "^0.2.14",
"@univerjs/data-validation": "^0.2.14",
"@univerjs/design": "^0.2.14",
"@univerjs/docs": "^0.2.14",
"@univerjs/docs-drawing": "^0.2.14",
"@univerjs/docs-drawing-ui": "^0.2.14",
"@univerjs/docs-hyper-link": "^0.2.14",
"@univerjs/docs-hyper-link-ui": "^0.2.14",
"@univerjs/docs-thread-comment-ui": "^0.2.14",
"@univerjs/docs-ui": "^0.2.14",
"@univerjs/drawing": "^0.2.14",
"@univerjs/drawing-ui": "^0.2.14",
"@univerjs/engine-formula": "^0.2.14",
"@univerjs/engine-numfmt": "^0.2.14",
"@univerjs/engine-render": "^0.2.14",
"@univerjs/facade": "^0.2.14",
"@univerjs/find-replace": "^0.2.14",
"@univerjs/icons": "^0.1.78",
"@univerjs/network": "^0.2.14",
"@univerjs/protocol": "^0.1.38",
"@univerjs/rpc": "^0.2.14",
"@univerjs/sheets": "^0.2.14",
"@univerjs/sheets-conditional-formatting": "^0.2.14",
"@univerjs/sheets-conditional-formatting-ui": "^0.2.14",
"@univerjs/sheets-crosshair-highlight": "^0.2.14",
"@univerjs/sheets-data-validation": "^0.2.14",
"@univerjs/sheets-drawing": "^0.2.14",
"@univerjs/sheets-drawing-ui": "^0.2.14",
"@univerjs/sheets-filter": "^0.2.14",
"@univerjs/sheets-filter-ui": "^0.2.14",
"@univerjs/sheets-find-replace": "^0.2.14",
"@univerjs/sheets-formula": "^0.2.14",
"@univerjs/sheets-hyper-link": "^0.2.14",
"@univerjs/sheets-hyper-link-ui": "^0.2.14",
"@univerjs/sheets-numfmt": "^0.2.14",
"@univerjs/sheets-sort": "^0.2.14",
"@univerjs/sheets-sort-ui": "^0.2.14",
"@univerjs/sheets-thread-comment": "^0.2.14",
"@univerjs/sheets-thread-comment-base": "^0.2.14",
"@univerjs/sheets-ui": "^0.2.14",
"@univerjs/sheets-zen-editor": "^0.2.14",
"@univerjs/telemetry": "^0.2.14",
"@univerjs/thread-comment": "^0.2.14",
"@univerjs/thread-comment-ui": "^0.2.14",
"@univerjs/ui": "^0.2.14",
"defu": "^6.1.4",
"jszip": "^3.10.1",
"rxjs": "^7.8.1",
"tslib": "^2.7.0"
},
"optionalDependencies": {
"@univerjs-pro/exchange-wasm": "^1.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.0",
"@release-it/conventional-changelog": "^8.0.2",
"@types/node": "^22.5.4",
"@univerjs/vite-plugin": "^0.5.0",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"lint-staged": "^15.2.10",
"obsidian": "1.6.6",
"release-it": "^17.6.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2",
"vite": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}