@univerjs/preset-sheets-core 0.5.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +176 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/locales/en-US.js +1 -0
- package/lib/cjs/locales/fa-IR.js +1 -0
- package/lib/cjs/locales/ru-RU.js +1 -0
- package/lib/cjs/locales/vi-VN.js +1 -0
- package/lib/cjs/locales/zh-CN.js +1 -0
- package/lib/cjs/locales/zh-TW.js +1 -0
- package/lib/es/index.js +44 -0
- package/lib/es/locales/en-US.js +23 -0
- package/lib/es/locales/fa-IR.js +23 -0
- package/lib/es/locales/ru-RU.js +23 -0
- package/lib/es/locales/vi-VN.js +23 -0
- package/lib/es/locales/zh-CN.js +23 -0
- package/lib/es/locales/zh-TW.js +23 -0
- package/lib/index.css +1 -0
- package/lib/types/index.d.ts +24 -0
- package/lib/types/locales/en-US.d.ts +2 -0
- package/lib/types/locales/fa-IR.d.ts +2 -0
- package/lib/types/locales/ru-RU.d.ts +2 -0
- package/lib/types/locales/vi-VN.d.ts +2 -0
- package/lib/types/locales/zh-CN.d.ts +2 -0
- package/lib/types/locales/zh-TW.d.ts +2 -0
- package/lib/types/types.d.ts +11 -0
- package/lib/types/web-worker.d.ts +2 -0
- package/lib/umd/index.js +211 -0
- package/lib/umd/locales/en-US.js +58 -0
- package/lib/umd/locales/fa-IR.js +58 -0
- package/lib/umd/locales/ru-RU.js +58 -0
- package/lib/umd/locales/vi-VN.js +55 -0
- package/lib/umd/locales/zh-CN.js +56 -0
- package/lib/umd/locales/zh-TW.js +56 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@univerjs/preset-sheets-core",
|
|
3
|
+
"version": "0.5.0-beta.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "",
|
|
6
|
+
"author": "DreamNum <developer@univer.ai>",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"funding": {
|
|
9
|
+
"type": "opencollective",
|
|
10
|
+
"url": "https://opencollective.com/univer"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://univer.ai",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/dream-num/univer-presets"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/dream-num/univer-presets/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"univer"
|
|
22
|
+
],
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./lib/es/index.js",
|
|
26
|
+
"require": "./lib/cjs/index.js",
|
|
27
|
+
"types": "./lib/types/index.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./*": {
|
|
30
|
+
"import": "./lib/es/*",
|
|
31
|
+
"require": "./lib/cjs/*",
|
|
32
|
+
"types": "./lib/types/index.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./web-worker": {
|
|
35
|
+
"import": "./lib/es/web-worker.js",
|
|
36
|
+
"require": "./lib/cjs/locales/*.js",
|
|
37
|
+
"types": "./lib/types/web-worker.d.ts"
|
|
38
|
+
},
|
|
39
|
+
"./locales/*": {
|
|
40
|
+
"import": "./lib/es/locales/*.js",
|
|
41
|
+
"require": "./lib/cjs/locales/*.js",
|
|
42
|
+
"types": "./lib/types/locales/*.d.ts"
|
|
43
|
+
},
|
|
44
|
+
"./lib/*": "./lib/*"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"main": "./lib/es/index.js",
|
|
50
|
+
"directories": {
|
|
51
|
+
"lib": "lib"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"lib"
|
|
55
|
+
],
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
58
|
+
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
59
|
+
"rxjs": ">=7.0.0"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@univerjs/design": "0.5.0-beta.1",
|
|
63
|
+
"@univerjs/docs": "0.5.0-beta.1",
|
|
64
|
+
"@univerjs/docs-ui": "0.5.0-beta.1",
|
|
65
|
+
"@univerjs/engine-formula": "0.5.0-beta.1",
|
|
66
|
+
"@univerjs/engine-render": "0.5.0-beta.1",
|
|
67
|
+
"@univerjs/facade": "0.5.0-beta.1",
|
|
68
|
+
"@univerjs/rpc": "0.5.0-beta.1",
|
|
69
|
+
"@univerjs/sheets": "0.5.0-beta.1",
|
|
70
|
+
"@univerjs/sheets-formula": "0.5.0-beta.1",
|
|
71
|
+
"@univerjs/sheets-formula-ui": "0.5.0-beta.1",
|
|
72
|
+
"@univerjs/sheets-numfmt": "0.5.0-beta.1",
|
|
73
|
+
"@univerjs/sheets-numfmt-ui": "0.5.0-beta.1",
|
|
74
|
+
"@univerjs/sheets-ui": "0.5.0-beta.1",
|
|
75
|
+
"@univerjs/ui": "0.5.0-beta.1"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@univerjs/core": "0.5.0-beta.1",
|
|
79
|
+
"typescript": "^5.6.3",
|
|
80
|
+
"@univerjs-infra/shared": "0.5.0-beta.1"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"prebuild": "tsx prepare.ts",
|
|
84
|
+
"build:preset": "tsx build.ts"
|
|
85
|
+
},
|
|
86
|
+
"module": "./lib/es/index.js"
|
|
87
|
+
}
|