@thi.ng/proctext 1.0.39 → 1.0.43

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 (2) hide show
  1. package/package.json +101 -101
  2. package/CHANGELOG.md +0 -31
package/package.json CHANGED
@@ -1,102 +1,102 @@
1
1
  {
2
- "name": "@thi.ng/proctext",
3
- "version": "1.0.39",
4
- "description": "Extensible procedural text generation engine with dynamic, mutable state, indirection, randomizable & recursive variable expansions",
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/proctext",
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": "yarn 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.2",
43
- "@thi.ng/arrays": "^2.13.11",
44
- "@thi.ng/checks": "^3.7.18",
45
- "@thi.ng/defmulti": "^3.0.78",
46
- "@thi.ng/errors": "^2.5.42",
47
- "@thi.ng/object-utils": "^1.2.10",
48
- "@thi.ng/parse": "^2.6.30",
49
- "@thi.ng/random": "^4.1.27",
50
- "@thi.ng/strings": "^3.9.22"
51
- },
52
- "devDependencies": {
53
- "esbuild": "^0.25.9",
54
- "typedoc": "^0.28.12",
55
- "typescript": "^5.9.2"
56
- },
57
- "keywords": [
58
- "ast",
59
- "bindings",
60
- "generative",
61
- "generator",
62
- "grammar",
63
- "parser",
64
- "recursion",
65
- "rewrite",
66
- "syntax",
67
- "template",
68
- "text",
69
- "typescript",
70
- "variable"
71
- ],
72
- "publishConfig": {
73
- "access": "public"
74
- },
75
- "browser": {
76
- "process": false,
77
- "setTimeout": false
78
- },
79
- "engines": {
80
- "node": ">=18"
81
- },
82
- "files": [
83
- "./*.js",
84
- "./*.d.ts"
85
- ],
86
- "exports": {
87
- ".": {
88
- "default": "./index.js"
89
- },
90
- "./api": {
91
- "default": "./api.js"
92
- },
93
- "./generate": {
94
- "default": "./generate.js"
95
- }
96
- },
97
- "thi.ng": {
98
- "status": "alpha",
99
- "year": 2023
100
- },
101
- "gitHead": "fbf4b46ba8a5ecff8c5423f4c2d158d208d20fc8\n"
102
- }
2
+ "name": "@thi.ng/proctext",
3
+ "version": "1.0.43",
4
+ "description": "Extensible procedural text generation engine with dynamic, mutable state, indirection, randomizable & recursive variable expansions",
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/proctext",
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.6",
43
+ "@thi.ng/arrays": "^2.13.15",
44
+ "@thi.ng/checks": "^3.7.22",
45
+ "@thi.ng/defmulti": "^3.0.82",
46
+ "@thi.ng/errors": "^2.5.46",
47
+ "@thi.ng/object-utils": "^1.2.14",
48
+ "@thi.ng/parse": "^2.6.34",
49
+ "@thi.ng/random": "^4.1.31",
50
+ "@thi.ng/strings": "^3.9.26"
51
+ },
52
+ "devDependencies": {
53
+ "esbuild": "^0.25.11",
54
+ "typedoc": "^0.28.14",
55
+ "typescript": "^5.9.3"
56
+ },
57
+ "keywords": [
58
+ "ast",
59
+ "bindings",
60
+ "generative",
61
+ "generator",
62
+ "grammar",
63
+ "parser",
64
+ "recursion",
65
+ "rewrite",
66
+ "syntax",
67
+ "template",
68
+ "text",
69
+ "typescript",
70
+ "variable"
71
+ ],
72
+ "publishConfig": {
73
+ "access": "public"
74
+ },
75
+ "browser": {
76
+ "process": false,
77
+ "setTimeout": false
78
+ },
79
+ "engines": {
80
+ "node": ">=18"
81
+ },
82
+ "files": [
83
+ "./*.js",
84
+ "./*.d.ts"
85
+ ],
86
+ "exports": {
87
+ ".": {
88
+ "default": "./index.js"
89
+ },
90
+ "./api": {
91
+ "default": "./api.js"
92
+ },
93
+ "./generate": {
94
+ "default": "./generate.js"
95
+ }
96
+ },
97
+ "thi.ng": {
98
+ "status": "alpha",
99
+ "year": 2023
100
+ },
101
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
102
+ }
package/CHANGELOG.md DELETED
@@ -1,31 +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
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/proctext@0.2.0) (2024-08-10)
15
-
16
- #### 🚀 Features
17
-
18
- - add `isAre` and `withArticle` modifiers ([b969d12](https://github.com/thi-ng/umbrella/commit/b969d12))
19
- - add `<empty>` var, update missing var handling ([350bc26](https://github.com/thi-ng/umbrella/commit/350bc26))
20
- - add `<empty>` special var reference for empty strings
21
- - add `GeneratorContext.missing` option to provide fallback for missing vars
22
- - add custom error types
23
- - fix: add missing `maxHist` default value
24
- - update deps
25
-
26
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/proctext@0.1.0) (2024-07-19)
27
-
28
- #### 🚀 Features
29
-
30
- - import as new pkg ([1f96e4d](https://github.com/thi-ng/umbrella/commit/1f96e4d))
31
- - update grammar, case-sensitive var names ([059bffb](https://github.com/thi-ng/umbrella/commit/059bffb))