Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Knoblich <[email protected]>
  • Loading branch information
Stefan Knoblich committed Aug 13, 2024
0 parents commit f751067
Show file tree
Hide file tree
Showing 7 changed files with 1,439 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
*.d.ts
*.d.ts.map
*.js.map
18 changes: 18 additions & 0 deletions package.json
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"
}
}
Loading

0 comments on commit f751067

Please sign in to comment.