-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
100 lines (100 loc) · 3.39 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
{
"name": "sheet-plus",
"type": "module",
"version": "1.8.3",
"description": "Create Excel-like spreadsheets and easily embed them in Markdown.",
"author": "ljcoder",
"license": "Apache-2.0",
"keywords": [
"univer",
"obsidian",
"excel",
"spreadsheet"
],
"scripts": {
"prepare": "simple-git-hooks",
"dev": "vite build --watch",
"build": "vite build",
"release": "release-it",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@ljcoder/authorization": "git+ssh://git@github.com:ljcoder2015/authorization.git#v1.2.0",
"@ljcoder/charts": "git+ssh://git@github.com:ljcoder2015/univer-charts.git#v0.0.5",
"@ljcoder/embed-link": "git+ssh://git@github.com:ljcoder2015/univer-embed-link.git#v1.3.0",
"@ljcoder/embed-link-ui": "git+ssh://git@github.com:ljcoder2015/embed-link-ui.git#v0.0.4",
"@ljcoder/import-export": "git+ssh://git@github.com:ljcoder2015/univer-import-export.git#v0.4.0",
"@univerjs/core": "^0.5.1",
"@univerjs/data-validation": "^0.5.1",
"@univerjs/design": "^0.5.1",
"@univerjs/docs": "^0.5.1",
"@univerjs/docs-drawing": "0.5.1",
"@univerjs/docs-ui": "^0.5.1",
"@univerjs/drawing": "^0.5.1",
"@univerjs/drawing-ui": "^0.5.1",
"@univerjs/engine-formula": "^0.5.1",
"@univerjs/engine-render": "^0.5.1",
"@univerjs/find-replace": "^0.5.1",
"@univerjs/sheets": "^0.5.1",
"@univerjs/sheets-conditional-formatting": "^0.5.1",
"@univerjs/sheets-conditional-formatting-ui": "^0.5.1",
"@univerjs/sheets-crosshair-highlight": "^0.5.1",
"@univerjs/sheets-data-validation": "^0.5.1",
"@univerjs/sheets-data-validation-ui": "^0.5.1",
"@univerjs/sheets-drawing": "^0.5.1",
"@univerjs/sheets-drawing-ui": "^0.5.1",
"@univerjs/sheets-filter": "^0.5.1",
"@univerjs/sheets-filter-ui": "^0.5.1",
"@univerjs/sheets-find-replace": "^0.5.1",
"@univerjs/sheets-formula": "^0.5.1",
"@univerjs/sheets-formula-ui": "^0.5.1",
"@univerjs/sheets-hyper-link": "^0.5.1",
"@univerjs/sheets-hyper-link-ui": "^0.5.1",
"@univerjs/sheets-numfmt": "^0.5.1",
"@univerjs/sheets-numfmt-ui": "^0.5.1",
"@univerjs/sheets-sort": "^0.5.1",
"@univerjs/sheets-sort-ui": "^0.5.1",
"@univerjs/sheets-thread-comment": "^0.5.1",
"@univerjs/sheets-thread-comment-ui": "^0.5.1",
"@univerjs/sheets-ui": "^0.5.1",
"@univerjs/sheets-zen-editor": "^0.5.1",
"@univerjs/thread-comment": "^0.5.1",
"@univerjs/thread-comment-ui": "^0.5.1",
"@univerjs/ui": "^0.5.1",
"defu": "^6.1.4",
"echarts": "^5.5.1",
"jszip": "^3.10.1",
"monkey-around": "^3.0.0",
"process": "^0.11.10"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@release-it/conventional-changelog": "^8.0.2",
"@types/node": "^20.17.9",
"@univerjs/vite-plugin": "^0.5.1",
"builtin-modules": "^3.3.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"lint-staged": "^15.2.10",
"obsidian": "1.5.7-1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"release-it": "^17.10.0",
"rxjs": "^7.8.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"pnpm": {
"patchedDependencies": {
"@univerjs/engine-render@0.5.1": "patches/@univerjs__engine-render@0.5.1.patch"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}