@dallaylaen/ski-interpreter 2.6.0 → 2.6.2
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/CHANGELOG.md +20 -0
- package/README.md +6 -6
- package/lib/ski-interpreter.cjs.js.map +2 -2
- package/lib/ski-interpreter.min.js.map +2 -2
- package/lib/{ski-interpreter.esm.js → ski-interpreter.mjs} +1 -1
- package/lib/{ski-interpreter.esm.js.map → ski-interpreter.mjs.map} +2 -2
- package/lib/ski-quest.min.js.map +2 -2
- package/lib/types/expr.d.ts +1 -0
- package/package.json +5 -5
package/lib/types/expr.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dallaylaen/ski-interpreter",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "Simple Kombinator Interpreter - a combinatory logic & lambda calculus parser and interpreter. Supports SKI, BCKW, Church numerals, and setting up assertions ('quests') involving all of the above.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"combinatory logic",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
],
|
|
12
12
|
"type": "commonjs",
|
|
13
13
|
"main": "lib/ski-interpreter.cjs.js",
|
|
14
|
-
"
|
|
15
|
-
"module": "lib/ski-interpreter.esm.js",
|
|
14
|
+
"module": "lib/ski-interpreter.mjs",
|
|
16
15
|
"exports": {
|
|
17
|
-
"
|
|
16
|
+
"types": "./lib/types/index.d.ts",
|
|
17
|
+
"import": "./lib/ski-interpreter.mjs",
|
|
18
18
|
"require": "./lib/ski-interpreter.cjs.js"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "npm run tsc; npx nyc mocha --recursive test",
|
|
27
27
|
"build-web": "npx esbuild --bundle --minify --sourcemap --format=iife ./src/index.ts --outfile=docs/build/js/ski-interpreter.min.js",
|
|
28
28
|
"build-cjs": "npx esbuild --bundle --sourcemap --format=cjs ./src/index.ts --outfile=lib/ski-interpreter.cjs.js",
|
|
29
|
-
"build-esm": "npx esbuild --bundle --sourcemap --format=esm ./src/index.ts --outfile=lib/ski-interpreter.
|
|
29
|
+
"build-esm": "npx esbuild --bundle --sourcemap --format=esm ./src/index.ts --outfile=lib/ski-interpreter.mjs",
|
|
30
30
|
"build-site": "npx esbuild --bundle --minify --sourcemap ./site-src/index.js --outfile=docs/build/js/util.min.js",
|
|
31
31
|
"build-quest": "npx esbuild --bundle --minify --sourcemap --format=iife ./site-src/index-quest.js --outfile=docs/build/js/ski-quest.min.js",
|
|
32
32
|
"build-all": "npm run build-cjs && npm run build-esm && npm run build-web && npm run build-site && npm run build-quest",
|