a-calc 3.0.0-beta.2025120807 → 3.0.0-beta.20260105
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/README.md +1 -25
- package/a-calc.versions.js +2 -1
- package/browser/index.js +8 -1
- package/calc.d.ts +369 -72
- package/cjs/index.js +8 -1
- package/es/index.js +8 -1
- package/package.json +14 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-calc",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.20260105",
|
|
4
4
|
"description": "A very powerful and easy-to-use number precision calculation and formatting library.",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -82,21 +82,30 @@
|
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@babel/core": "^7.21.4",
|
|
84
84
|
"@babel/preset-env": "^7.21.4",
|
|
85
|
+
"@codemirror/commands": "^6.10.1",
|
|
86
|
+
"@codemirror/lang-javascript": "^6.2.4",
|
|
87
|
+
"@codemirror/language": "^6.12.1",
|
|
88
|
+
"@codemirror/state": "^6.5.3",
|
|
89
|
+
"@codemirror/theme-one-dark": "^6.1.3",
|
|
90
|
+
"@codemirror/view": "^6.39.8",
|
|
85
91
|
"@rollup/plugin-babel": "^6.0.4",
|
|
86
92
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
87
93
|
"@rollup/plugin-json": "^6.0.1",
|
|
88
94
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
89
95
|
"@rollup/plugin-terser": "^0.4.4",
|
|
96
|
+
"a-calc": "^2.2.15",
|
|
90
97
|
"ava": "^4.3.3",
|
|
91
98
|
"benchmark": "^2.1.4",
|
|
92
|
-
"bignumber.js": "^9.
|
|
99
|
+
"bignumber.js": "^9.3.1",
|
|
100
|
+
"codemirror": "^6.0.2",
|
|
93
101
|
"cross-env": "^7.0.3",
|
|
102
|
+
"decimal.js": "^10.6.0",
|
|
94
103
|
"fast-deep-equal": "^3.1.3",
|
|
95
104
|
"glob": "^8.1.0",
|
|
96
105
|
"json-stringify-safe": "^5.0.1",
|
|
97
106
|
"lodash-es": "^4.17.21",
|
|
98
|
-
"math-expression-evaluator": "2.0.
|
|
99
|
-
"mathjs": "
|
|
107
|
+
"math-expression-evaluator": "^2.0.7",
|
|
108
|
+
"mathjs": "^15.1.0",
|
|
100
109
|
"npm-run-all": "^4.1.5",
|
|
101
110
|
"rollup": "^4.6.0",
|
|
102
111
|
"rollup-plugin-livereload": "^2.0.5",
|
|
@@ -106,6 +115,7 @@
|
|
|
106
115
|
"vue": "^3.5.25"
|
|
107
116
|
},
|
|
108
117
|
"dependencies": {
|
|
118
|
+
"@uiw/codemirror-themes-all": "^4.25.4",
|
|
109
119
|
"typescript-treasure": "0.0.9"
|
|
110
120
|
}
|
|
111
121
|
}
|