@thi.ng/lispy 0.4.8 → 0.4.12

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 +99 -99
  2. package/CHANGELOG.md +0 -39
package/package.json CHANGED
@@ -1,100 +1,100 @@
1
1
  {
2
- "name": "@thi.ng/lispy",
3
- "version": "0.4.8",
4
- "description": "Lightweight, extensible, interpreted Lisp-style DSL for embedding in other projects",
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/lispy",
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/checks": "^3.7.18",
44
- "@thi.ng/compare": "^2.4.28",
45
- "@thi.ng/defmulti": "^3.0.78",
46
- "@thi.ng/errors": "^2.5.42",
47
- "@thi.ng/math": "^5.12.0",
48
- "@thi.ng/object-utils": "^1.2.10",
49
- "@thi.ng/sexpr": "^1.1.8",
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
- "array",
59
- "clojure",
60
- "composition",
61
- "dsl",
62
- "functional",
63
- "interpreter",
64
- "language",
65
- "lisp",
66
- "parser",
67
- "regexp",
68
- "runtime",
69
- "s-expression",
70
- "string",
71
- "typescript"
72
- ],
73
- "publishConfig": {
74
- "access": "public"
75
- },
76
- "browser": {
77
- "process": false,
78
- "setTimeout": false
79
- },
80
- "engines": {
81
- "node": ">=18"
82
- },
83
- "files": [
84
- "./*.js",
85
- "./*.d.ts"
86
- ],
87
- "exports": {
88
- ".": {
89
- "default": "./index.js"
90
- },
91
- "./kernel": {
92
- "default": "./kernel.js"
93
- }
94
- },
95
- "thi.ng": {
96
- "status": "beta",
97
- "year": 2023
98
- },
99
- "gitHead": "fbf4b46ba8a5ecff8c5423f4c2d158d208d20fc8\n"
100
- }
2
+ "name": "@thi.ng/lispy",
3
+ "version": "0.4.12",
4
+ "description": "Lightweight, extensible, interpreted Lisp-style DSL for embedding in other projects",
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/lispy",
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/checks": "^3.7.22",
44
+ "@thi.ng/compare": "^2.4.32",
45
+ "@thi.ng/defmulti": "^3.0.82",
46
+ "@thi.ng/errors": "^2.5.46",
47
+ "@thi.ng/math": "^5.13.3",
48
+ "@thi.ng/object-utils": "^1.2.14",
49
+ "@thi.ng/sexpr": "^1.1.12",
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
+ "array",
59
+ "clojure",
60
+ "composition",
61
+ "dsl",
62
+ "functional",
63
+ "interpreter",
64
+ "language",
65
+ "lisp",
66
+ "parser",
67
+ "regexp",
68
+ "runtime",
69
+ "s-expression",
70
+ "string",
71
+ "typescript"
72
+ ],
73
+ "publishConfig": {
74
+ "access": "public"
75
+ },
76
+ "browser": {
77
+ "process": false,
78
+ "setTimeout": false
79
+ },
80
+ "engines": {
81
+ "node": ">=18"
82
+ },
83
+ "files": [
84
+ "./*.js",
85
+ "./*.d.ts"
86
+ ],
87
+ "exports": {
88
+ ".": {
89
+ "default": "./index.js"
90
+ },
91
+ "./kernel": {
92
+ "default": "./kernel.js"
93
+ }
94
+ },
95
+ "thi.ng": {
96
+ "status": "beta",
97
+ "year": 2023
98
+ },
99
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
100
+ }
package/CHANGELOG.md DELETED
@@ -1,39 +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.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/lispy@0.4.0) (2025-07-29)
15
-
16
- #### 🚀 Features
17
-
18
- - add syntax opts arg for `evalSource()` ([1a44c23](https://github.com/thi-ng/umbrella/commit/1a44c23))
19
- - add JSON parse/stringify builtins ([dda16d6](https://github.com/thi-ng/umbrella/commit/dda16d6))
20
-
21
- ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/lispy@0.3.0) (2025-05-28)
22
-
23
- #### 🚀 Features
24
-
25
- - add/update builtins ([ab7cdec](https://github.com/thi-ng/umbrella/commit/ab7cdec))
26
-
27
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/lispy@0.2.0) (2025-05-21)
28
-
29
- #### 🚀 Features
30
-
31
- - add more builtins & control flow ([a3b559c](https://github.com/thi-ng/umbrella/commit/a3b559c))
32
-
33
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/lispy@0.1.0) (2025-05-20)
34
-
35
- #### 🚀 Features
36
-
37
- - import as new pkg ([5ddb591](https://github.com/thi-ng/umbrella/commit/5ddb591))
38
- - add more builtins ([c010478](https://github.com/thi-ng/umbrella/commit/c010478))
39
- - add string/regex builtins ([602c1b9](https://github.com/thi-ng/umbrella/commit/602c1b9))