@thi.ng/lsys 2.3.32 → 2.3.37
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 +94 -94
- package/CHANGELOG.md +0 -54
package/package.json
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
}
|
|
2
|
+
"name": "@thi.ng/lsys",
|
|
3
|
+
"version": "2.3.37",
|
|
4
|
+
"description": "Functional, extensible L-System architecture w/ support for probabilistic rules",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./index.js",
|
|
7
|
+
"typings": "./index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/thi-ng/umbrella.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://thi.ng/lsys",
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/postspectacular"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "patreon",
|
|
21
|
+
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "liberapay",
|
|
25
|
+
"url": "https://liberapay.com/thi.ng"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "yarn build:esbuild && yarn build:decl",
|
|
32
|
+
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
33
|
+
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
34
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
35
|
+
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
36
|
+
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
37
|
+
"pub": "npm publish --access public",
|
|
38
|
+
"test": "bun test",
|
|
39
|
+
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@thi.ng/api": "^8.12.7",
|
|
43
|
+
"@thi.ng/checks": "^3.7.23",
|
|
44
|
+
"@thi.ng/compose": "^3.0.44",
|
|
45
|
+
"@thi.ng/errors": "^2.5.47",
|
|
46
|
+
"@thi.ng/math": "^5.13.4",
|
|
47
|
+
"@thi.ng/random": "^4.1.32",
|
|
48
|
+
"@thi.ng/transducers": "^9.6.15",
|
|
49
|
+
"@thi.ng/vectors": "^8.6.11"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"esbuild": "^0.25.11",
|
|
53
|
+
"typedoc": "^0.28.14",
|
|
54
|
+
"typescript": "^5.9.3"
|
|
55
|
+
},
|
|
56
|
+
"keywords": [
|
|
57
|
+
"1d",
|
|
58
|
+
"2d",
|
|
59
|
+
"3d",
|
|
60
|
+
"datastructure",
|
|
61
|
+
"generative",
|
|
62
|
+
"geometry",
|
|
63
|
+
"l-system",
|
|
64
|
+
"probabilistic",
|
|
65
|
+
"random",
|
|
66
|
+
"rulebased",
|
|
67
|
+
"turtle",
|
|
68
|
+
"typescript"
|
|
69
|
+
],
|
|
70
|
+
"publishConfig": {
|
|
71
|
+
"access": "public"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18"
|
|
75
|
+
},
|
|
76
|
+
"files": [
|
|
77
|
+
"./*.js",
|
|
78
|
+
"./*.d.ts"
|
|
79
|
+
],
|
|
80
|
+
"exports": {
|
|
81
|
+
".": {
|
|
82
|
+
"default": "./index.js"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"thi.ng": {
|
|
86
|
+
"blog": [
|
|
87
|
+
{
|
|
88
|
+
"title": "Workshop report: Generative design with Clojure",
|
|
89
|
+
"url": "https://medium.com/@thi.ng/workshop-report-generative-design-with-clojure-7d6d8ea9a6e8"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"year": 2019
|
|
93
|
+
},
|
|
94
|
+
"gitHead": "d977f819bcafdcb2b24c45f8d01a167fe29fc85a\n"
|
|
95
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
- **Last updated**: 2025-09-01T16:38:35Z
|
|
4
|
-
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
|
-
|
|
6
|
-
All notable changes to this project will be documented in this file.
|
|
7
|
-
Only versions published since **2022-01-01** are listed here.
|
|
8
|
-
Please consult the Git history for older version information.
|
|
9
|
-
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
10
|
-
|
|
11
|
-
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
|
-
and/or version bumps of transitive dependencies.
|
|
13
|
-
|
|
14
|
-
### [2.3.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/lsys@2.3.5) (2025-04-16)
|
|
15
|
-
|
|
16
|
-
#### ♻️ Refactoring
|
|
17
|
-
|
|
18
|
-
- minor internal optimizations (vector ops), update `RuleImplementations` generics ([c6bc7dc](https://github.com/thi-ng/umbrella/commit/c6bc7dc))
|
|
19
|
-
|
|
20
|
-
## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/lsys@2.3.0) (2025-03-16)
|
|
21
|
-
|
|
22
|
-
#### 🚀 Features
|
|
23
|
-
|
|
24
|
-
- update `interpret()`, add `DEFAULT` rule impl support ([a1651ab](https://github.com/thi-ng/umbrella/commit/a1651ab))
|
|
25
|
-
|
|
26
|
-
#### ♻️ Refactoring
|
|
27
|
-
|
|
28
|
-
- migrate examples ([c37767f](https://github.com/thi-ng/umbrella/commit/c37767f))
|
|
29
|
-
|
|
30
|
-
## [2.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/lsys@2.2.0) (2024-12-24)
|
|
31
|
-
|
|
32
|
-
#### 🚀 Features
|
|
33
|
-
|
|
34
|
-
- update `rewrite()`, add support for rewrite rule functions ([0b88cfc](https://github.com/thi-ng/umbrella/commit/0b88cfc))
|
|
35
|
-
- add docstrings
|
|
36
|
-
- update deps
|
|
37
|
-
|
|
38
|
-
### [2.1.106](https://github.com/thi-ng/umbrella/tree/@thi.ng/lsys@2.1.106) (2024-02-22)
|
|
39
|
-
|
|
40
|
-
#### ♻️ Refactoring
|
|
41
|
-
|
|
42
|
-
- update all `node:*` imports ([c71a526](https://github.com/thi-ng/umbrella/commit/c71a526))
|
|
43
|
-
|
|
44
|
-
### [2.1.82](https://github.com/thi-ng/umbrella/tree/@thi.ng/lsys@2.1.82) (2023-11-09)
|
|
45
|
-
|
|
46
|
-
#### ♻️ Refactoring
|
|
47
|
-
|
|
48
|
-
- update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
|
|
49
|
-
|
|
50
|
-
### [2.1.61](https://github.com/thi-ng/umbrella/tree/@thi.ng/lsys@2.1.61) (2023-08-12)
|
|
51
|
-
|
|
52
|
-
#### ♻️ Refactoring
|
|
53
|
-
|
|
54
|
-
- update .probability() call sites in various pkgs ([c8c8141](https://github.com/thi-ng/umbrella/commit/c8c8141))
|