@mojir/dvala 0.0.19 → 0.0.24

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/dist/cli/cli.js +1 -1
  2. package/package.json +30 -24
package/dist/cli/cli.js CHANGED
@@ -478,7 +478,7 @@ function findAllOccurrences(input, pattern) {
478
478
  }
479
479
  //#endregion
480
480
  //#region package.json
481
- var version = "0.0.19";
481
+ var version = "0.0.24";
482
482
  //#endregion
483
483
  //#region src/typeGuards/string.ts
484
484
  function isString(value, options = {}) {
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@mojir/dvala",
3
- "version": "0.0.19",
4
- "description": "dvala",
3
+ "overrides": {
4
+ "file-type": "^21.3.2"
5
+ },
6
+ "version": "0.0.24",
7
+ "description": "A suspendable, time-traveling functional language for JavaScript with algebraic effects",
5
8
  "author": "Albert Mojir",
6
9
  "license": "MIT",
7
10
  "repository": {
@@ -9,15 +12,21 @@
9
12
  "url": "git+https://github.com/mojir/dvala.git"
10
13
  },
11
14
  "keywords": [
12
- "Dvala",
13
- "Functional",
14
- "Pure",
15
- "Typescript",
16
- "Web",
17
- "Compiler",
18
- "AST",
19
- "Interpreter",
20
- "Clojure"
15
+ "dvala",
16
+ "functional",
17
+ "programming-language",
18
+ "interpreter",
19
+ "suspendable",
20
+ "resumable",
21
+ "algebraic-effects",
22
+ "time-travel",
23
+ "pure",
24
+ "immutable",
25
+ "expression-language",
26
+ "typescript",
27
+ "javascript",
28
+ "lisp",
29
+ "clojure"
21
30
  ],
22
31
  "exports": {
23
32
  ".": {
@@ -124,8 +133,8 @@
124
133
  "lint:no-fix": "wireit",
125
134
  "typecheck": "wireit",
126
135
  "typecheck:watch": "tsc -p ./tsconfig.compile.json --noEmit --watch",
127
- "check": "npm install && npm run lint && npm run typecheck && npm run test && npm run build",
128
- "check:no-fix": "npm run lint:no-fix && npm run typecheck && npm run test",
136
+ "check": "npm install && npm run lint && npm run typecheck && npm run test && npm run build && [ -n \"$CI\" ] || npm run test:e2e",
137
+ "check:no-fix": "npm run lint:no-fix && npm run typecheck && npm run test && [ -n \"$CI\" ] || npm run test:e2e",
129
138
  "clean": "npm run clean-dvala && npm run clean-playground && rm -rf .wireit coverage test-results vscode-dvala/out",
130
139
  "clean-dvala": "rm -rf dist build",
131
140
  "clean-playground": "rm -rf playground-builder/build playground-www/build",
@@ -145,25 +154,22 @@
145
154
  "mcp:inspect": "npx @modelcontextprotocol/inspector node ./dist/mcp-server/server.js"
146
155
  },
147
156
  "devDependencies": {
148
- "@antfu/eslint-config": "^7.7.0",
149
157
  "@eslint/js": "^10.0.1",
150
- "@mermaid-js/mermaid-cli": "^11.12.0",
151
158
  "@modelcontextprotocol/sdk": "^1.27.1",
152
159
  "@playwright/test": "^1.58.2",
153
160
  "@stylistic/eslint-plugin": "^5.10.0",
154
- "@types/node": "^25.3.5",
155
- "@types/vscode": "^1.109.0",
156
- "@vitest/coverage-v8": "^4.0.18",
161
+ "@types/node": "^25.5.0",
162
+ "@types/vscode": "^1.110.0",
163
+ "@vitest/coverage-v8": "^4.1.0",
157
164
  "@vscode/vsce": "^3.7.1",
158
- "esbuild": "^0.27.3",
165
+ "esbuild": "^0.27.4",
159
166
  "eslint": "^10.0.3",
160
- "open-cli": "^5.0.0",
161
- "rolldown": "^1.0.0-rc.8",
167
+ "open-cli": "^8.0.0",
168
+ "rolldown": "^1.0.0-rc.9",
162
169
  "serve": "^14.2.6",
163
- "tslib": "^2.8.1",
164
170
  "typescript": "^5.9.3",
165
- "typescript-eslint": "^8.56.1",
166
- "vitest": "^4.0.18",
171
+ "typescript-eslint": "^8.57.1",
172
+ "vitest": "^4.1.0",
167
173
  "wireit": "^0.14.12",
168
174
  "zod": "^4.3.6"
169
175
  },