@isl-lang/repl 0.1.0 → 0.1.1
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/dist/cli.js +915 -493
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +882 -465
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +78 -25
- package/dist/index.d.ts +78 -25
- package/dist/index.js +882 -466
- package/dist/index.js.map +1 -1
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@isl-lang/repl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Interactive REPL for exploring ISL specifications",
|
|
5
5
|
"author": "ISL Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,10 +42,21 @@
|
|
|
42
42
|
"README.md",
|
|
43
43
|
"LICENSE"
|
|
44
44
|
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsup",
|
|
47
|
+
"dev": "tsup --watch",
|
|
48
|
+
"start": "node dist/cli.js",
|
|
49
|
+
"test": "vitest run --passWithNoTests",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"lint": "eslint src --ext .ts",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"clean": "rimraf dist",
|
|
54
|
+
"prepublishOnly": "pnpm run build",
|
|
55
|
+
"test:unit": "vitest run --passWithNoTests",
|
|
56
|
+
"test:coverage": "vitest run --coverage"
|
|
57
|
+
},
|
|
45
58
|
"dependencies": {
|
|
46
|
-
"@isl-lang/parser": "
|
|
47
|
-
"@isl-lang/evaluator": "0.1.0",
|
|
48
|
-
"@isl-lang/typechecker": "0.1.0"
|
|
59
|
+
"@isl-lang/parser": "workspace:*"
|
|
49
60
|
},
|
|
50
61
|
"devDependencies": {
|
|
51
62
|
"@types/node": "^20.11.0",
|
|
@@ -54,14 +65,5 @@
|
|
|
54
65
|
"typescript": "^5.3.0",
|
|
55
66
|
"vitest": "^1.2.0"
|
|
56
67
|
},
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
"dev": "tsup --watch",
|
|
60
|
-
"start": "node dist/cli.js",
|
|
61
|
-
"test": "vitest run",
|
|
62
|
-
"test:watch": "vitest",
|
|
63
|
-
"lint": "eslint src --ext .ts",
|
|
64
|
-
"typecheck": "tsc --noEmit",
|
|
65
|
-
"clean": "rimraf dist"
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
+
"sideEffects": false
|
|
69
|
+
}
|