Skip to content

Commit fc05761

Browse files
authored
Merge pull request #4 from mlabs-haskell/adamczykm/connor/new-plugin-interface
Fix some imports to make it work finally + add checkOutputValidity Connor's Prover & Plugin Work
2 parents 60f3613 + f92c49a commit fc05761

File tree

12 files changed

+516
-310
lines changed

12 files changed

+516
-310
lines changed

flake.lock

Lines changed: 64 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
description = "MinAuth";
3+
4+
inputs = {
5+
flake-parts.url = "github:hercules-ci/flake-parts";
6+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
7+
};
8+
9+
outputs = inputs@{ flake-parts, ... }:
10+
flake-parts.lib.mkFlake { inherit inputs; } {
11+
imports = [
12+
];
13+
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
14+
perSystem = { config, self', inputs', pkgs, system, ... }: {
15+
devShells.default = pkgs.mkShell {
16+
packages = with pkgs; [
17+
nodejs
18+
nodePackages.typescript
19+
nodePackages.typescript-language-server
20+
];
21+
};
22+
};
23+
flake = {
24+
};
25+
};
26+
}

package-lock.json

Lines changed: 67 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"start-api": "nodemon src/apiServer/apiServer.ts",
8-
"start-plugin-server": "nodemon src/pluginInteropServer/pluginServer.ts",
7+
"start-api": "nodemon src/someServer/apiServer.ts",
8+
"start-plugin-server": "nodemon src/library/tools/pluginServer.ts",
99
"start-client": "nodemon src/headlessClient/client.ts",
1010
"build": "tsc",
11-
"serve-api": "node ./dist/apiServer/server.js",
12-
"serve-plugin-server": "node ./dist/pluginInteropServer/pluginServer.js",
11+
"serve-api": "node ./dist/someServer/apiServer.js",
12+
"serve-plugin-server": "node ./dist/library/tools/pluginServer.js",
1313
"run-client": "node ./dist/headlessClient/client.js"
1414
},
1515
"keywords": [],
@@ -24,12 +24,16 @@
2424
"axios": "^1.5.0",
2525
"big-integer": "^1.6.51",
2626
"body-parser": "^1.20.2",
27+
"cmd-ts": "^0.13.0",
2728
"crypto": "^1.0.1",
29+
"env-var": "^7.4.1",
2830
"express": "^4.18.2",
2931
"jsonwebtoken": "^9.0.2",
3032
"passport": "^0.6.0",
3133
"passport-jwt": "^4.0.1",
32-
"passport-strategy": "^1.0.0"
34+
"passport-strategy": "^1.0.0",
35+
"yaml": "^2.3.2",
36+
"zod": "^3.22.2"
3337
},
3438
"devDependencies": {
3539
"@types/axios": "^0.14.0",
@@ -47,4 +51,4 @@
4751
"peerDependencies": {
4852
"o1js": "0.13.*"
4953
}
50-
}
54+
}

0 commit comments

Comments
 (0)