@cjhd/cj-decimal 1.0.0
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/.cj-decimal.md +12 -0
- package/assets/Decimal.ts +1428 -0
- package/assets/Decimal.ts.meta +9 -0
- package/assets.meta +9 -0
- package/index.ts +2 -0
- package/index.ts.meta +9 -0
- package/package.json +21 -0
- package/package.json.meta +11 -0
package/assets.meta
ADDED
package/index.ts
ADDED
package/index.ts.meta
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cjhd/cj-decimal",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"engine": ">=3.8.0",
|
|
5
|
+
"description": "定点数学计算模块",
|
|
6
|
+
"main": "index.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://gitee.com/cocos2d-zp/cococs-creator-frame-3d"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public",
|
|
16
|
+
"registry": "https://registry.npmjs.org"
|
|
17
|
+
},
|
|
18
|
+
"author": "超M <402879660@qq.com>",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"readme": ".cj-decimal.md"
|
|
21
|
+
}
|