lemmascript 0.0.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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # LemmaScript
2
+
3
+ A verification toolchain for TypeScript.
4
+
5
+ Coming soon from [Midspiral](https://github.com/midspiral).
@@ -0,0 +1 @@
1
+ export declare const VERSION = "0.0.1";
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VERSION = void 0;
4
+ exports.VERSION = "0.0.1";
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "lemmascript",
3
+ "version": "0.0.1",
4
+ "description": "A verification toolchain for TypeScript",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "dev": "tsc --watch",
10
+ "prepublishOnly": "npm run build"
11
+ },
12
+ "keywords": [
13
+ "typescript",
14
+ "lean",
15
+ "verification",
16
+ "formal-verification",
17
+ "proof",
18
+ "toolchain"
19
+ ],
20
+ "license": "MIT",
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
24
+ "devDependencies": {
25
+ "typescript": "^5.8.0"
26
+ }
27
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export const VERSION = "0.0.1";
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "Node16",
5
+ "moduleResolution": "Node16",
6
+ "outDir": "dist",
7
+ "rootDir": "src",
8
+ "declaration": true,
9
+ "strict": true,
10
+ "esModuleInterop": true,
11
+ "skipLibCheck": true
12
+ },
13
+ "include": ["src"]
14
+ }