-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stefan Knoblich <[email protected]>
- Loading branch information
Stefan Knoblich
committed
Aug 13, 2024
0 parents
commit f751067
Showing
7 changed files
with
1,439 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tag | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
*.d.ts | ||
*.d.ts.map | ||
*.js.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "poc-aegis", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"private": true, | ||
"devDependencies": { | ||
"@types/node": "20.15.1", | ||
"@noble/ciphers": "0.6.0", | ||
"glob": "11.0.0", | ||
"ts-node": "10.9.2", | ||
"typescript": "5.5.4" | ||
}, | ||
"scripts": { | ||
"run": "node --loader ts-node/esm src/index.mts", | ||
"test": "node --loader ts-node/esm test/index.mts", | ||
"prof": "node --prof --loader ts-node/esm src/index.mts" | ||
} | ||
} |
Oops, something went wrong.