Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
opendeeple committed Dec 22, 2024
1 parent bd9a22e commit 2651774
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules/
src/run.ts
src/run.ts
*.tgz
dist/
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tsconfig.json
*.tgz
16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"name": "fetchai",
"version": "1.0.0",
"name": "@opendeeple/fetchai",
"version": "1.0.4",
"description": "The AI-powered code migration",
"main": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run test"
"build": "tsc",
"clean": "rm -rf dist",
"prepare": "npm run build",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
Expand All @@ -13,7 +18,8 @@
"keywords": [
"AI",
"ChatGPT",
"Anthropic"
"Anthropic",
"Code Migration"
],
"author": "Firdavs Beknazarov",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2020",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist"
},
"include": ["src"],
Expand Down

0 comments on commit 2651774

Please sign in to comment.