@series-inc/rundot-3d-engine 0.6.7 → 0.6.8
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 +80 -80
- package/dist/{chunk-SCNHMGS3.js → chunk-UDJVZHS6.js} +23 -1
- package/dist/{chunk-SCNHMGS3.js.map → chunk-UDJVZHS6.js.map} +1 -1
- package/dist/index.js +1 -1
- package/dist/systems/index.d.ts +5 -0
- package/dist/systems/index.js +1 -1
- package/docs/systems/NavigationSystem.md +274 -274
- package/docs/systems/SplineSystem.md +270 -270
- package/package.json +95 -95
package/package.json
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@series-inc/rundot-3d-engine",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"types": "./dist/index.d.ts",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "tsup",
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"lint": "eslint src",
|
|
10
|
-
"lint:fix": "eslint src --fix",
|
|
11
|
-
"format": "prettier --write .",
|
|
12
|
-
"format:check": "prettier --check .",
|
|
13
|
-
"postinstall": "node scripts/postinstall.mjs",
|
|
14
|
-
"gen-docs-index": "node scripts/gen-docs-index.mjs && node scripts/update-docs-index.mjs"
|
|
15
|
-
},
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/series-ai/Run.3DEngine.git",
|
|
19
|
-
"directory": "."
|
|
20
|
-
},
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"types": "./dist/index.d.ts",
|
|
24
|
-
"import": "./dist/index.js",
|
|
25
|
-
"require": "./dist/index.cjs"
|
|
26
|
-
},
|
|
27
|
-
"./systems": {
|
|
28
|
-
"types": "./dist/systems/index.d.ts",
|
|
29
|
-
"import": "./dist/systems/index.js",
|
|
30
|
-
"require": "./dist/systems/index.cjs"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@dimforge/rapier3d": "^0.11.2",
|
|
35
|
-
"@dimforge/rapier3d-compat": "^0.11.2",
|
|
36
|
-
"@series-inc/stowkit-reader": "^0.1.42",
|
|
37
|
-
"@series-inc/stowkit-three-loader": "^0.1.
|
|
38
|
-
"three-stdlib": "^2.36.0"
|
|
39
|
-
},
|
|
40
|
-
"peerDependencies": {
|
|
41
|
-
"@capacitor/app": ">=6.0.0",
|
|
42
|
-
"@capacitor/core": ">=6.0.0",
|
|
43
|
-
"@capacitor/local-notifications": ">=6.0.0",
|
|
44
|
-
"@capacitor/preferences": ">=6.0.0",
|
|
45
|
-
"@capacitor/splash-screen": ">=6.0.0",
|
|
46
|
-
"@series-inc/rundot-game-sdk": "^5.3.0",
|
|
47
|
-
"appsflyer-capacitor-plugin": ">=6.17.0",
|
|
48
|
-
"three": ">=0.180.0"
|
|
49
|
-
},
|
|
50
|
-
"peerDependenciesMeta": {
|
|
51
|
-
"@capacitor/app": {
|
|
52
|
-
"optional": true
|
|
53
|
-
},
|
|
54
|
-
"@capacitor/core": {
|
|
55
|
-
"optional": true
|
|
56
|
-
},
|
|
57
|
-
"@capacitor/local-notifications": {
|
|
58
|
-
"optional": true
|
|
59
|
-
},
|
|
60
|
-
"@capacitor/preferences": {
|
|
61
|
-
"optional": true
|
|
62
|
-
},
|
|
63
|
-
"@capacitor/splash-screen": {
|
|
64
|
-
"optional": true
|
|
65
|
-
},
|
|
66
|
-
"appsflyer-capacitor-plugin": {
|
|
67
|
-
"optional": true
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"@capacitor/app": "^8.0.0",
|
|
72
|
-
"@capacitor/core": "^8.0.2",
|
|
73
|
-
"@capacitor/local-notifications": "^8.0.0",
|
|
74
|
-
"@capacitor/preferences": "^8.0.0",
|
|
75
|
-
"@capacitor/splash-screen": "^8.0.0",
|
|
76
|
-
"@types/node": "^20.11.16",
|
|
77
|
-
"@types/three": "^0.
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
79
|
-
"@typescript-eslint/parser": "^8.32.1",
|
|
80
|
-
"eslint": "^9.39.2",
|
|
81
|
-
"eslint-import-resolver-typescript": "^4.4.1",
|
|
82
|
-
"eslint-plugin-import": "^2.31.0",
|
|
83
|
-
"prettier": "^3.2.4",
|
|
84
|
-
"tsup": "^8.5.0",
|
|
85
|
-
"typescript": "^5.3.3"
|
|
86
|
-
},
|
|
87
|
-
"publishConfig": {
|
|
88
|
-
"access": "public"
|
|
89
|
-
},
|
|
90
|
-
"files": [
|
|
91
|
-
"dist",
|
|
92
|
-
"docs",
|
|
93
|
-
"scripts"
|
|
94
|
-
]
|
|
95
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@series-inc/rundot-3d-engine",
|
|
3
|
+
"version": "0.6.8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsup",
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"lint": "eslint src",
|
|
10
|
+
"lint:fix": "eslint src --fix",
|
|
11
|
+
"format": "prettier --write .",
|
|
12
|
+
"format:check": "prettier --check .",
|
|
13
|
+
"postinstall": "node scripts/postinstall.mjs",
|
|
14
|
+
"gen-docs-index": "node scripts/gen-docs-index.mjs && node scripts/update-docs-index.mjs"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/series-ai/Run.3DEngine.git",
|
|
19
|
+
"directory": "."
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.js",
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./systems": {
|
|
28
|
+
"types": "./dist/systems/index.d.ts",
|
|
29
|
+
"import": "./dist/systems/index.js",
|
|
30
|
+
"require": "./dist/systems/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@dimforge/rapier3d": "^0.11.2",
|
|
35
|
+
"@dimforge/rapier3d-compat": "^0.11.2",
|
|
36
|
+
"@series-inc/stowkit-reader": "^0.1.42",
|
|
37
|
+
"@series-inc/stowkit-three-loader": "^0.1.48",
|
|
38
|
+
"three-stdlib": "^2.36.0"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"@capacitor/app": ">=6.0.0",
|
|
42
|
+
"@capacitor/core": ">=6.0.0",
|
|
43
|
+
"@capacitor/local-notifications": ">=6.0.0",
|
|
44
|
+
"@capacitor/preferences": ">=6.0.0",
|
|
45
|
+
"@capacitor/splash-screen": ">=6.0.0",
|
|
46
|
+
"@series-inc/rundot-game-sdk": "^5.3.0",
|
|
47
|
+
"appsflyer-capacitor-plugin": ">=6.17.0",
|
|
48
|
+
"three": ">=0.180.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependenciesMeta": {
|
|
51
|
+
"@capacitor/app": {
|
|
52
|
+
"optional": true
|
|
53
|
+
},
|
|
54
|
+
"@capacitor/core": {
|
|
55
|
+
"optional": true
|
|
56
|
+
},
|
|
57
|
+
"@capacitor/local-notifications": {
|
|
58
|
+
"optional": true
|
|
59
|
+
},
|
|
60
|
+
"@capacitor/preferences": {
|
|
61
|
+
"optional": true
|
|
62
|
+
},
|
|
63
|
+
"@capacitor/splash-screen": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"appsflyer-capacitor-plugin": {
|
|
67
|
+
"optional": true
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@capacitor/app": "^8.0.0",
|
|
72
|
+
"@capacitor/core": "^8.0.2",
|
|
73
|
+
"@capacitor/local-notifications": "^8.0.0",
|
|
74
|
+
"@capacitor/preferences": "^8.0.0",
|
|
75
|
+
"@capacitor/splash-screen": "^8.0.0",
|
|
76
|
+
"@types/node": "^20.11.16",
|
|
77
|
+
"@types/three": "^0.182.0",
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
79
|
+
"@typescript-eslint/parser": "^8.32.1",
|
|
80
|
+
"eslint": "^9.39.2",
|
|
81
|
+
"eslint-import-resolver-typescript": "^4.4.1",
|
|
82
|
+
"eslint-plugin-import": "^2.31.0",
|
|
83
|
+
"prettier": "^3.2.4",
|
|
84
|
+
"tsup": "^8.5.0",
|
|
85
|
+
"typescript": "^5.3.3"
|
|
86
|
+
},
|
|
87
|
+
"publishConfig": {
|
|
88
|
+
"access": "public"
|
|
89
|
+
},
|
|
90
|
+
"files": [
|
|
91
|
+
"dist",
|
|
92
|
+
"docs",
|
|
93
|
+
"scripts"
|
|
94
|
+
]
|
|
95
|
+
}
|