@esengine/ecs-framework-math 1.0.2 → 1.0.3
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/package.json +67 -66
package/package.json
CHANGED
|
@@ -1,66 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@esengine/ecs-framework-math",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "ECS框架2D数学库 - 提供向量、矩阵、几何形状和碰撞检测功能",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "bin/index.js",
|
|
7
|
-
"types": "bin/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"bin/**/*",
|
|
10
|
-
"README.md",
|
|
11
|
-
"LICENSE"
|
|
12
|
-
],
|
|
13
|
-
"keywords": [
|
|
14
|
-
"ecs",
|
|
15
|
-
"math",
|
|
16
|
-
"2d",
|
|
17
|
-
"vector",
|
|
18
|
-
"matrix",
|
|
19
|
-
"geometry",
|
|
20
|
-
"collision",
|
|
21
|
-
"game-engine",
|
|
22
|
-
"typescript"
|
|
23
|
-
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"clean": "rimraf bin dist",
|
|
26
|
-
"build:ts": "tsc",
|
|
27
|
-
"prebuild": "npm run clean",
|
|
28
|
-
"build": "npm run build:ts",
|
|
29
|
-
"build:watch": "tsc --watch",
|
|
30
|
-
"rebuild": "npm run clean && npm run build",
|
|
31
|
-
"build:npm": "npm run build && node build-rollup.cjs",
|
|
32
|
-
"
|
|
33
|
-
"test
|
|
34
|
-
"test:
|
|
35
|
-
"test:
|
|
36
|
-
"test:
|
|
37
|
-
"
|
|
38
|
-
"publish:
|
|
39
|
-
"publish:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
"@rollup/plugin-
|
|
46
|
-
"@rollup/plugin-
|
|
47
|
-
"@
|
|
48
|
-
"@types/
|
|
49
|
-
"
|
|
50
|
-
"jest
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"rollup
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@esengine/ecs-framework-math",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "ECS框架2D数学库 - 提供向量、矩阵、几何形状和碰撞检测功能",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "bin/index.js",
|
|
7
|
+
"types": "bin/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"bin/**/*",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"keywords": [
|
|
14
|
+
"ecs",
|
|
15
|
+
"math",
|
|
16
|
+
"2d",
|
|
17
|
+
"vector",
|
|
18
|
+
"matrix",
|
|
19
|
+
"geometry",
|
|
20
|
+
"collision",
|
|
21
|
+
"game-engine",
|
|
22
|
+
"typescript"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"clean": "rimraf bin dist",
|
|
26
|
+
"build:ts": "tsc",
|
|
27
|
+
"prebuild": "npm run clean",
|
|
28
|
+
"build": "npm run build:ts",
|
|
29
|
+
"build:watch": "tsc --watch",
|
|
30
|
+
"rebuild": "npm run clean && npm run build",
|
|
31
|
+
"build:npm": "npm run build && node build-rollup.cjs",
|
|
32
|
+
"publish:npm": "npm run build:npm && cd dist && npm publish",
|
|
33
|
+
"test": "jest --config jest.config.cjs",
|
|
34
|
+
"test:watch": "jest --watch --config jest.config.cjs",
|
|
35
|
+
"test:coverage": "jest --coverage --config jest.config.cjs",
|
|
36
|
+
"test:ci": "jest --ci --coverage --config jest.config.cjs",
|
|
37
|
+
"test:clear": "jest --clearCache",
|
|
38
|
+
"publish:patch": "npm version patch && npm publish",
|
|
39
|
+
"publish:minor": "npm version minor && npm publish",
|
|
40
|
+
"publish:major": "npm version major && npm publish"
|
|
41
|
+
},
|
|
42
|
+
"author": "yhh",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
46
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
47
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
48
|
+
"@types/jest": "^29.5.14",
|
|
49
|
+
"@types/node": "^20.19.0",
|
|
50
|
+
"jest": "^29.7.0",
|
|
51
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
52
|
+
"rimraf": "^5.0.0",
|
|
53
|
+
"rollup": "^4.42.0",
|
|
54
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
55
|
+
"ts-jest": "^29.4.0",
|
|
56
|
+
"typescript": "^5.8.3"
|
|
57
|
+
},
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public",
|
|
60
|
+
"registry": "https://registry.npmjs.org/"
|
|
61
|
+
},
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "https://github.com/esengine/ecs-framework.git",
|
|
65
|
+
"directory": "packages/math"
|
|
66
|
+
}
|
|
67
|
+
}
|