@plurid/plurid-engine 0.0.0-2 → 0.0.0-20

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.
Files changed (60) hide show
  1. package/distribution/index.d.mts +734 -0
  2. package/distribution/index.d.ts +734 -3
  3. package/distribution/index.js +3317 -2495
  4. package/distribution/index.js.map +1 -1
  5. package/distribution/index.mjs +3426 -0
  6. package/distribution/index.mjs.map +1 -0
  7. package/package.json +71 -79
  8. package/distribution/data/constants/index.d.ts +0 -1
  9. package/distribution/data/interfaces/index.d.ts +0 -4
  10. package/distribution/functions/index.d.ts +0 -2
  11. package/distribution/functions/navigate/index.d.ts +0 -1
  12. package/distribution/functions/template/index.d.ts +0 -1
  13. package/distribution/index.es.js +0 -2590
  14. package/distribution/index.es.js.map +0 -1
  15. package/distribution/modules/general/configuration/index.d.ts +0 -2
  16. package/distribution/modules/general/index.d.ts +0 -3
  17. package/distribution/modules/general/tree/index.d.ts +0 -6
  18. package/distribution/modules/index.d.ts +0 -9
  19. package/distribution/modules/interaction/direction/index.d.ts +0 -2
  20. package/distribution/modules/interaction/index.d.ts +0 -5
  21. package/distribution/modules/interaction/mathematics/matrix/index.d.ts +0 -31
  22. package/distribution/modules/interaction/mathematics/quaternion/index.d.ts +0 -79
  23. package/distribution/modules/interaction/mathematics/transform/index.d.ts +0 -69
  24. package/distribution/modules/internationalization/index.d.ts +0 -3
  25. package/distribution/modules/planes/index.d.ts +0 -2
  26. package/distribution/modules/planes/logic/index.d.ts +0 -6
  27. package/distribution/modules/planes/registrar/index.d.ts +0 -3
  28. package/distribution/modules/planes/registrar/object.d.ts +0 -14
  29. package/distribution/modules/planes/registrar/utilities.d.ts +0 -6
  30. package/distribution/modules/routing/IsoMatcher/index.d.ts +0 -44
  31. package/distribution/modules/routing/IsoMatcher/interfaces.d.ts +0 -57
  32. package/distribution/modules/routing/Parser/index.d.ts +0 -21
  33. package/distribution/modules/routing/Parser/interfaces.d.ts +0 -31
  34. package/distribution/modules/routing/Parser/logic.d.ts +0 -68
  35. package/distribution/modules/routing/index.d.ts +0 -7
  36. package/distribution/modules/routing/logic/general/index.d.ts +0 -6
  37. package/distribution/modules/routing/logic/index.d.ts +0 -3
  38. package/distribution/modules/routing/logic/utilities/index.d.ts +0 -29
  39. package/distribution/modules/routing/logic/validity/index.d.ts +0 -3
  40. package/distribution/modules/space/index.d.ts +0 -6
  41. package/distribution/modules/space/layout/column.d.ts +0 -3
  42. package/distribution/modules/space/layout/faceToFace.d.ts +0 -3
  43. package/distribution/modules/space/layout/index.d.ts +0 -6
  44. package/distribution/modules/space/layout/row.d.ts +0 -3
  45. package/distribution/modules/space/layout/sheaves.d.ts +0 -3
  46. package/distribution/modules/space/layout/zigZag.d.ts +0 -3
  47. package/distribution/modules/space/location/index.d.ts +0 -2
  48. package/distribution/modules/space/location/logic.d.ts +0 -22
  49. package/distribution/modules/space/tree/index.d.ts +0 -3
  50. package/distribution/modules/space/tree/logic.d.ts +0 -32
  51. package/distribution/modules/space/tree/object.d.ts +0 -13
  52. package/distribution/modules/space/utilities/index.d.ts +0 -16
  53. package/distribution/modules/space/view/index.d.ts +0 -2
  54. package/distribution/modules/space/view/logic.d.ts +0 -13
  55. package/distribution/modules/state/compute/index.d.ts +0 -3
  56. package/distribution/modules/state/compute/space/index.d.ts +0 -3
  57. package/distribution/modules/state/compute/themes/index.d.ts +0 -3
  58. package/distribution/modules/state/index.d.ts +0 -3
  59. package/distribution/modules/state/local/index.d.ts +0 -3
  60. package/distribution/modules/utilities/index.d.ts +0 -1
package/package.json CHANGED
@@ -1,81 +1,73 @@
1
1
  {
2
- "name": "@plurid/plurid-engine",
3
- "version": "0.0.0-2",
4
- "description": "Plurid Engine and Utility Functions",
5
- "keywords": [
6
- "plurid",
7
- "engine"
8
- ],
9
- "author": "ly3xqhl8g9 <ly3xqhl8g9@plurid.com> (https://plurid.com)",
10
- "license": "SEE LICENSE IN LICENSE",
11
- "repository": {
12
- "type": "git",
13
- "url": "https://github.com/plurid/plurid"
14
- },
15
- "bugs": {
16
- "email": "source@plurid.com",
17
- "url": "https://github.com/plurid/plurid/issues"
18
- },
19
- "homepage": "https://github.com/plurid/plurid/blob/master/packages/plurid-web/plurid-engine",
20
- "publishConfig": {
21
- "registry": "https://registry.npmjs.org/",
22
- "access": "public"
23
- },
24
- "files": [
25
- "distribution"
26
- ],
27
- "main": "distribution/index.js",
28
- "module": "distribution/index.es.js",
29
- "typings": "distribution/index.d.ts",
30
- "engines": {
31
- "node": ">=12",
32
- "npm": ">=6"
33
- },
34
- "scripts": {
35
- "clean": "rm -rf ./distribution",
36
- "clean.tests": "find ./distribution -type d -name \"__tests__\" -prune -exec rm -rf {} +",
37
- "clean.performance": "find ./distribution -type d -name \"__performance__\" -prune -exec rm -rf {} +",
38
- "test": "jest ./source --config ./configurations/jest.config.js --rootDir ./",
39
- "test.suite": "jest -c configurations/jest.config.js",
40
- "lint": "eslint -c ./configurations/.eslintrc.js ./source --ext .ts,.tsx",
41
- "start": "yarn clean && rollup -c ./scripts/rollup.config.js -w --environment ENV_MODE:local",
42
- "build.local": "yarn clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:local",
43
- "build.development": "yarn clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:development",
44
- "build.production": "yarn clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:production",
45
- "build": "yarn lint && yarn test && yarn build.production && yarn clean.tests && yarn clean.performance",
46
- "prepublishOnly": "yarn build"
47
- },
48
- "peerDependencies": {
49
- "@plurid/plurid-data": "*",
50
- "@plurid/plurid-functions": "*",
51
- "@plurid/plurid-themes": "*"
52
- },
53
- "devDependencies": {
54
- "@plurid/plurid-data": "0.0.0-3",
55
- "@plurid/plurid-functions": "0.0.0-3",
56
- "@plurid/plurid-pubsub": "0.0.0-3",
57
- "@plurid/plurid-themes": "0.0.0-0",
58
- "@rollup/plugin-commonjs": "^19.0.0",
59
- "@types/jest": "^26.0.23",
60
- "@types/node": "^15.0.3",
61
- "@types/react": "^17.0.5",
62
- "@types/rollup-plugin-sourcemaps": "^0.4.2",
63
- "@typescript-eslint/eslint-plugin": "^4.23.0",
64
- "@typescript-eslint/parser": "^4.23.0",
65
- "@zerollup/ts-transform-paths": "^1.7.18",
66
- "coveralls": "^3.1.0",
67
- "eslint": "^7.26.0",
68
- "jest": "^26.6.3",
69
- "jest-config": "^26.6.3",
70
- "react": "^17.0.2",
71
- "rollup": "^2.47.0",
72
- "rollup-plugin-sourcemaps": "^0.6.3",
73
- "rollup-plugin-terser": "^7.0.2",
74
- "rollup-plugin-typescript2": "^0.30.0",
75
- "ts-jest": "^26.5.6",
76
- "ts-node": "^9.1.1",
77
- "ttypescript": "^1.5.12",
78
- "typescript": "^4.2.4",
79
- "typescript-transform-paths": "^2.2.3"
2
+ "name": "@plurid/plurid-engine",
3
+ "version": "0.0.0-20",
4
+ "sideEffects": false,
5
+ "description": "Plurid Engine and Utility Functions",
6
+ "keywords": [
7
+ "plurid",
8
+ "engine"
9
+ ],
10
+ "author": "ly3xqhl8g9 <ly3xqhl8g9@plurid.com> (https://plurid.com)",
11
+ "license": "SEE LICENSE IN LICENSE",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/plurid/plurid"
15
+ },
16
+ "bugs": {
17
+ "email": "source@plurid.com",
18
+ "url": "https://github.com/plurid/plurid/issues"
19
+ },
20
+ "homepage": "https://github.com/plurid/plurid/blob/master/packages/plurid-web/plurid-engine",
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org/",
23
+ "access": "public"
24
+ },
25
+ "files": [
26
+ "distribution"
27
+ ],
28
+ "main": "distribution/index.js",
29
+ "module": "distribution/index.mjs",
30
+ "types": "distribution/index.d.ts",
31
+ "exports": {
32
+ ".": {
33
+ "types": "./distribution/index.d.ts",
34
+ "import": "./distribution/index.mjs",
35
+ "require": "./distribution/index.js"
80
36
  }
81
- }
37
+ },
38
+ "engines": {
39
+ "node": ">=18",
40
+ "npm": ">=6"
41
+ },
42
+ "peerDependencies": {
43
+ "@plurid/plurid-data": "*",
44
+ "@plurid/plurid-functions": "*",
45
+ "@plurid/plurid-themes": "*"
46
+ },
47
+ "devDependencies": {
48
+ "@types/jest": "^30.0.0",
49
+ "@types/node": "^20.10.6",
50
+ "coveralls": "^3.1.1",
51
+ "jest": "^30.4.2",
52
+ "jest-config": "^30.4.2",
53
+ "jest-environment-jsdom": "^30.4.1",
54
+ "rimraf": "^5.0.5",
55
+ "ts-jest": "^29.4.11",
56
+ "tsup": "^8.5.1",
57
+ "typescript": "^6.0.3",
58
+ "@plurid/plurid-data": "0.0.0-22",
59
+ "@plurid/plurid-functions": "0.0.0-32",
60
+ "@plurid/plurid-themes": "0.0.0-3",
61
+ "@plurid/plurid-pubsub": "0.0.0-10"
62
+ },
63
+ "scripts": {
64
+ "clean": "rimraf ./distribution",
65
+ "clean.tests": "find ./distribution -type d -name \"__tests__\" -prune -exec rm -rf {} +",
66
+ "clean.performance": "find ./distribution -type d -name \"__performance__\" -prune -exec rm -rf {} +",
67
+ "test": "jest ./source --config ./configurations/jest.config.js --rootDir ./",
68
+ "test.suite": "jest -c configurations/jest.config.js",
69
+ "build.development": "tsup --watch",
70
+ "build.production": "tsup",
71
+ "build": "tsup"
72
+ }
73
+ }
@@ -1 +0,0 @@
1
- export {};
@@ -1,4 +0,0 @@
1
- export interface WheelDeltas {
2
- deltaX: number;
3
- deltaY: number;
4
- }
@@ -1,2 +0,0 @@
1
- export * from "./template/index";
2
- export * from "./navigate/index";
@@ -1 +0,0 @@
1
- export declare const pluridRouterNavigate: (path: string) => void;
@@ -1 +0,0 @@
1
- export declare const cleanTemplate: (template: string) => string;