@amodx/ncs 0.0.22 → 0.0.24
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/Components/Component.types.d.ts +6 -1
- package/Components/ComponentArray.d.ts +1 -1
- package/Components/ComponentArray.js +11 -4
- package/Components/ComponentCursor.d.ts +4 -1
- package/Components/ComponentCursor.js +7 -2
- package/Data/serializeComponent.js +1 -1
- package/Data/serializeNode.js +28 -2
- package/Functional.js +2 -0
- package/Graphs/Graph.d.ts +1 -0
- package/Graphs/Graph.js +25 -14
- package/NCS.d.ts +26 -19
- package/NCS.js +15 -0
- package/Nodes/NodeArray.d.ts +1 -0
- package/Nodes/NodeArray.js +14 -8
- package/Nodes/NodeComponents.js +34 -19
- package/Nodes/NodeCursor.d.ts +5 -5
- package/Nodes/NodeCursor.js +117 -55
- package/Nodes/NodeId.d.ts +3 -0
- package/Nodes/NodeId.js +10 -0
- package/Nodes/NodeTags.js +37 -13
- package/Register/NCSRegister.js +1 -1
- package/Register/registerComponent.js +3 -6
- package/Register/registerContext.js +1 -1
- package/Register/registerTag.js +28 -2
- package/Schema/Schema.js +9 -3
- package/Schema/SchemaView.js +1 -1
- package/Systems/System.types.d.ts +1 -1
- package/Systems/SystemInstance.d.ts +1 -1
- package/Systems/SystemInstance.js +2 -2
- package/Tags/TagCursor.d.ts +1 -0
- package/Tags/TagCursor.js +3 -0
- package/package.json +1 -27
package/package.json
CHANGED
|
@@ -1,27 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@amodx/ncs",
|
|
3
|
-
"version": "0.0.22",
|
|
4
|
-
"module": "index.js",
|
|
5
|
-
"types": "index.d.ts",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"description": "NCS (Node Component System) is a library for the base of any NCS/ECS system.",
|
|
8
|
-
"keywords": [],
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "mkdir -p dist && rm -rf dist/* && cp package.json dist/package.json && cd ./src && npx tsc",
|
|
11
|
-
"compile": "cd ./src && npx tsc --watch"
|
|
12
|
-
},
|
|
13
|
-
"repository": {
|
|
14
|
-
"url": "git+https://github.com/Amodx/Libraries.git"
|
|
15
|
-
},
|
|
16
|
-
"bugs": {
|
|
17
|
-
"url": "https://github.com/Amodx/Libraries/issues"
|
|
18
|
-
},
|
|
19
|
-
"homepage": "https://github.com/Amodx/Libraries",
|
|
20
|
-
"author": "Amodx",
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"devDependencies": {},
|
|
23
|
-
"main": "index.js",
|
|
24
|
-
"publishConfig": {
|
|
25
|
-
"access": "public"
|
|
26
|
-
}
|
|
27
|
-
}
|
|
1
|
+
{"name":"@amodx/ncs","version":"0.0.24","module":"index.js","types":"index.d.ts","type":"module","description":"NCS (Node Component System) is a library for the base of any NCS/ECS system.","keywords":[],"scripts":{"build":"mkdir -p dist && rm -rf dist/* && cp package.json dist/package.json && cd ./src && npx tsc","compile":"cd ./src && npx tsc --watch"},"repository":{"url":"git+https://github.com/Amodx/Libraries.git"},"bugs":{"url":"https://github.com/Amodx/Libraries/issues"},"homepage":"https://github.com/Amodx/Libraries","author":"Amodx","license":"MIT","devDependencies":{},"main":"index.js","publishConfig":{"access":"public"}}
|