Skip to content

Commit

Permalink
Merge pull request #21 from dcSpark/nico/add_crypto_tools
Browse files Browse the repository at this point in the history
Nico/add crypto tools
  • Loading branch information
nicarq authored Aug 6, 2024
2 parents 08df72f + fd5ae5a commit bd6f8d1
Show file tree
Hide file tree
Showing 22 changed files with 1,234 additions and 28 deletions.
5 changes: 4 additions & 1 deletion apps/shinkai-tool-echo/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {},
"include": ["./src/**/*.ts", "webpack.config.ts"]
"include": [
"./src/**/*.ts",
"webpack.config.ts"
]
}
7 changes: 7 additions & 0 deletions apps/shinkai-tool-ethplorer-tokens/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/* eslint-disable */
export default {
displayName: '@shinkai_protocol/shinkai-tool-ethplorer-tokens',
preset: '../../jest.preset.js',
testEnvironment: 'node',
coverageDirectory: '../../coverage/apps/shinkai-tool-ethplorer-tokens',
};
4 changes: 4 additions & 0 deletions apps/shinkai-tool-ethplorer-tokens/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@shinkai_protocol/shinkai-tool-ethplorer-tokens",
"type": "commonjs"
}
35 changes: 35 additions & 0 deletions apps/shinkai-tool-ethplorer-tokens/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "@shinkai_protocol/shinkai-tool-ethplorer-tokens",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/shinkai-tool-ethplorer-tokens/src",
"projectType": "library",
"tags": ["tool"],
"targets": {
"build": {
"executor": "@nx/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"compiler": "tsc",
"outputPath": "dist/apps/shinkai-tool-ethplorer-tokens",
"main": "apps/shinkai-tool-ethplorer-tokens/src/index.ts",
"tsConfig": "apps/shinkai-tool-ethplorer-tokens/tsconfig.app.json",
"webpackConfig": "apps/shinkai-tool-ethplorer-tokens/webpack.config.ts"
},
"configurations": {
"development": {},
"production": {}
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"apps/shinkai-tool-ethplorer-tokens/**/*.ts",
"apps/shinkai-tool-ethplorer-tokens/package.json"
]
}
}
}
}
Loading

0 comments on commit bd6f8d1

Please sign in to comment.