@plurid/plurid-engine 0.0.0-17 → 0.0.0-19

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 (59) hide show
  1. package/distribution/index.d.mts +744 -0
  2. package/distribution/index.d.ts +744 -2
  3. package/distribution/index.js +3319 -2711
  4. package/distribution/index.js.map +1 -1
  5. package/distribution/index.mjs +3432 -0
  6. package/distribution/index.mjs.map +1 -0
  7. package/package.json +71 -78
  8. package/distribution/functions/index.d.ts +0 -2
  9. package/distribution/functions/navigate/index.d.ts +0 -1
  10. package/distribution/functions/template/index.d.ts +0 -1
  11. package/distribution/index.es.js +0 -2810
  12. package/distribution/index.es.js.map +0 -1
  13. package/distribution/modules/general/configuration/index.d.ts +0 -2
  14. package/distribution/modules/general/index.d.ts +0 -3
  15. package/distribution/modules/general/tree/index.d.ts +0 -5
  16. package/distribution/modules/index.d.ts +0 -9
  17. package/distribution/modules/interaction/direction/index.d.ts +0 -2
  18. package/distribution/modules/interaction/index.d.ts +0 -5
  19. package/distribution/modules/interaction/mathematics/matrix/index.d.ts +0 -31
  20. package/distribution/modules/interaction/mathematics/quaternion/index.d.ts +0 -78
  21. package/distribution/modules/interaction/mathematics/transform/general/index.d.ts +0 -37
  22. package/distribution/modules/interaction/mathematics/transform/index.d.ts +0 -3
  23. package/distribution/modules/interaction/mathematics/transform/matrix3d/index.d.ts +0 -68
  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 -4
  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/Parser/index.d.ts +0 -21
  32. package/distribution/modules/routing/Parser/interfaces.d.ts +0 -31
  33. package/distribution/modules/routing/Parser/logic.d.ts +0 -68
  34. package/distribution/modules/routing/index.d.ts +0 -6
  35. package/distribution/modules/routing/logic/general/index.d.ts +0 -8
  36. package/distribution/modules/routing/logic/index.d.ts +0 -3
  37. package/distribution/modules/routing/logic/utilities/index.d.ts +0 -29
  38. package/distribution/modules/routing/logic/validity/index.d.ts +0 -3
  39. package/distribution/modules/space/index.d.ts +0 -6
  40. package/distribution/modules/space/layout/column.d.ts +0 -3
  41. package/distribution/modules/space/layout/faceToFace.d.ts +0 -3
  42. package/distribution/modules/space/layout/index.d.ts +0 -6
  43. package/distribution/modules/space/layout/row.d.ts +0 -3
  44. package/distribution/modules/space/layout/sheaves.d.ts +0 -3
  45. package/distribution/modules/space/layout/zigZag.d.ts +0 -3
  46. package/distribution/modules/space/location/index.d.ts +0 -2
  47. package/distribution/modules/space/location/logic.d.ts +0 -22
  48. package/distribution/modules/space/tree/index.d.ts +0 -3
  49. package/distribution/modules/space/tree/logic.d.ts +0 -44
  50. package/distribution/modules/space/tree/object.d.ts +0 -13
  51. package/distribution/modules/space/utilities/index.d.ts +0 -16
  52. package/distribution/modules/space/view/index.d.ts +0 -2
  53. package/distribution/modules/space/view/logic.d.ts +0 -13
  54. package/distribution/modules/state/compute/index.d.ts +0 -3
  55. package/distribution/modules/state/compute/space/index.d.ts +0 -3
  56. package/distribution/modules/state/compute/themes/index.d.ts +0 -3
  57. package/distribution/modules/state/index.d.ts +0 -3
  58. package/distribution/modules/state/local/index.d.ts +0 -3
  59. package/distribution/modules/utilities/index.d.ts +0 -1
package/package.json CHANGED
@@ -1,80 +1,73 @@
1
1
  {
2
- "name": "@plurid/plurid-engine",
3
- "version": "0.0.0-17",
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": "rimraf ./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": "pnpm clean && rollup -c ./scripts/rollup.config.js -w --environment ENV_MODE:local",
42
- "build.local": "pnpm clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:local",
43
- "build.development": "pnpm clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:development",
44
- "build.production": "pnpm clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:production",
45
- "build": "pnpm lint && pnpm test && pnpm build.production && pnpm clean.tests && pnpm clean.performance",
46
- "prepublishOnly": "pnpm 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-18",
55
- "@plurid/plurid-functions": "0.0.0-30",
56
- "@plurid/plurid-pubsub": "0.0.0-9",
57
- "@plurid/plurid-themes": "0.0.0-2",
58
- "@rollup/plugin-commonjs": "^22.0.2",
59
- "@types/jest": "^29.0.0",
60
- "@types/node": "^18.7.14",
61
- "@typescript-eslint/eslint-plugin": "^5.36.1",
62
- "@typescript-eslint/parser": "^5.36.1",
63
- "@zerollup/ts-transform-paths": "^1.7.18",
64
- "coveralls": "^3.1.1",
65
- "eslint": "^8.23.0",
66
- "jest": "^29.0.1",
67
- "jest-config": "^29.0.1",
68
- "jest-environment-jsdom": "^29.0.1",
69
- "rimraf": "^3.0.2",
70
- "rollup": "^2.79.0",
71
- "rollup-plugin-sourcemaps": "^0.6.3",
72
- "rollup-plugin-terser": "^7.0.2",
73
- "rollup-plugin-typescript2": "^0.33.0",
74
- "ts-jest": "^28.0.8",
75
- "ts-node": "^10.9.1",
76
- "ttypescript": "^1.5.13",
77
- "typescript": "^4.8.2",
78
- "typescript-transform-paths": "^3.3.1"
2
+ "name": "@plurid/plurid-engine",
3
+ "version": "0.0.0-19",
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"
79
36
  }
80
- }
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-themes": "0.0.0-3",
59
+ "@plurid/plurid-pubsub": "0.0.0-10",
60
+ "@plurid/plurid-data": "0.0.0-21",
61
+ "@plurid/plurid-functions": "0.0.0-32"
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,2 +0,0 @@
1
- export * from './template';
2
- export * from './navigate';
@@ -1 +0,0 @@
1
- export declare const pluridRouterNavigate: (path: string) => void;
@@ -1 +0,0 @@
1
- export declare const cleanTemplate: (template: string) => string;