-
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.
- Loading branch information
1 parent
199ce90
commit ad2c43c
Showing
8 changed files
with
194 additions
and
183 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
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
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
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
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
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 |
---|---|---|
@@ -1,119 +1,117 @@ | ||
{ | ||
"name": "lucy", | ||
"version": "1.0.0", | ||
"description": "Personal hacking assistant 💀", | ||
"author": "Raja Rakotonirina <[email protected]>", | ||
"license": "MIT", | ||
"type": "module", | ||
"module": "index.ts", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"bin": { | ||
"lucy": "./dist/index.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/RajaRakoto/lucy.git" | ||
}, | ||
"homepage": "https://github.com/RajaRakoto/lucy#readme", | ||
"bugs": "https://github.com/RajaRakoto/lucy/issues", | ||
"files": [ | ||
"dist" | ||
], | ||
"keywords": [ | ||
"bun", | ||
"bunjs", | ||
"cli", | ||
"typescript", | ||
"tool", | ||
"hacking", | ||
"assistant" | ||
], | ||
"engines": { | ||
"bun": ">= 1.1.34" | ||
}, | ||
"scripts": { | ||
"start": "bun dist/index.js", | ||
"start:smol": "bun --smol dist/index.js", | ||
"start:bin": "./dist/lucy", | ||
"clean": "rimraf build dist coverage", | ||
"dev": "bun run src/index.ts", | ||
"dev:watch": "bun --watch run src/index.ts", | ||
"dev:hot": "bun --hot run src/index.ts", | ||
"dev:smol:watch": "bun --smol --watch run src/index.ts", | ||
"dev:smol:hot": "bun --smol --hot run src/index.ts", | ||
"build": "bun run clean && bun run build.js && grunt copy", | ||
"build:watch": "bun build src/index.ts --outdir dist --watch", | ||
"build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/lucy", | ||
"test": "bun test", | ||
"test:watch": "bun test --watch", | ||
"biome:start": "biome start", | ||
"biome:stop": "biome stop", | ||
"biome:fix": "biome check --fix .", | ||
"biome:unsafe": "biome check --fix --unsafe .", | ||
"backup": "grunt backup", | ||
"pkg-check": "depcheck", | ||
"pkg-upgrade": "ncu --interactive --format group --packageManager bun", | ||
"versioning": "ungit", | ||
"npm-version:major": "npm version major", | ||
"npm-version:minor": "npm version minor", | ||
"npm-version:patch": "npm version patch", | ||
"npm-login": "npm login", | ||
"npm-publish": "npm publish --access public", | ||
"npm-unpublish": "npm unpublish --force lucy", | ||
"npm-reset:registry": "npm config delete registry", | ||
"npm-check:registry": "npm config get registry", | ||
"npm-proxy-set:registry": "npm set registry http://localhost:4873/", | ||
"npm-proxy:start": "bun run npm-proxy-set:registry && verdaccio", | ||
"npm-proxy:publish": "npm publish --registry http://localhost:4873/", | ||
"npm-proxy:unpublish": "npm unpublish --force --registry http://localhost:4873/ lucy", | ||
"npm-proxy:republish": "bun run npm-proxy:unpublish && bun run npm-proxy:publish", | ||
"nvm": "nvm use", | ||
"db:pull": "drizzle-kit introspect", | ||
"db:push": "drizzle-kit push", | ||
"db:migrate": "drizzle-kit migrate", | ||
"db:generate": "drizzle-kit generate", | ||
"db:drop": "drizzle-kit drop", | ||
"db:up": "drizzle-kit up", | ||
"db:check": "drizzle-kit check", | ||
"db:studio": "drizzle-kit studio" | ||
}, | ||
"dependencies": { | ||
"@google/generative-ai": "^0.21.0", | ||
"better-sqlite3": "^11.5.0", | ||
"commander": "^12.1.0", | ||
"drizzle-orm": "^0.36.3", | ||
"execa": "^9.5.1", | ||
"figlet": "^1.8.0", | ||
"inquirer": "^9.2.15", | ||
"node-emoji": "^2.1.3", | ||
"ora": "^8.1.1" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@types/better-sqlite3": "^7.6.12", | ||
"@types/bun": "latest", | ||
"@types/commander": "^2.12.5", | ||
"@types/execa": "^2.0.2", | ||
"@types/figlet": "^1.7.0", | ||
"@types/inquirer": "^9.0.7", | ||
"@types/jest": "^29.5.14", | ||
"@types/node-emoji": "^2.1.0", | ||
"@types/ora": "^3.2.0", | ||
"bun-plugin-dts": "^0.3.0", | ||
"depcheck": "^1.4.7", | ||
"drizzle-kit": "^0.28.1", | ||
"grunt": "^1.6.1", | ||
"grunt-contrib-compress": "^2.0.0", | ||
"grunt-shell": "^4.0.0", | ||
"jest": "^29.7.0", | ||
"load-grunt-tasks": "^5.1.0", | ||
"npm-check-updates": "^17.1.11", | ||
"rimraf": "^6.0.1", | ||
"ts-jest": "^29.2.5", | ||
"ungit": "^1.5.28" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.0.0" | ||
} | ||
"name": "lucy", | ||
"version": "1.0.0", | ||
"description": "Personal hacking assistant 💀", | ||
"author": "Raja Rakotonirina <[email protected]>", | ||
"license": "MIT", | ||
"type": "module", | ||
"module": "index.ts", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"bin": { | ||
"lucy": "./dist/index.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/RajaRakoto/lucy.git" | ||
}, | ||
"homepage": "https://github.com/RajaRakoto/lucy#readme", | ||
"bugs": "https://github.com/RajaRakoto/lucy/issues", | ||
"files": ["dist"], | ||
"keywords": [ | ||
"bun", | ||
"bunjs", | ||
"cli", | ||
"typescript", | ||
"tool", | ||
"hacking", | ||
"assistant" | ||
], | ||
"engines": { | ||
"bun": ">= 1.1.34" | ||
}, | ||
"scripts": { | ||
"start": "bun dist/index.js", | ||
"start:smol": "bun --smol dist/index.js", | ||
"start:bin": "./dist/lucy", | ||
"clean": "rimraf build dist coverage", | ||
"dev": "bun run src/index.ts", | ||
"dev:watch": "bun --watch run src/index.ts", | ||
"dev:hot": "bun --hot run src/index.ts", | ||
"dev:smol:watch": "bun --smol --watch run src/index.ts", | ||
"dev:smol:hot": "bun --smol --hot run src/index.ts", | ||
"build": "bun run clean && bun run build.js && grunt copy", | ||
"build:watch": "bun build src/index.ts --outdir dist --watch", | ||
"build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/lucy", | ||
"test": "bun test", | ||
"test:watch": "bun test --watch", | ||
"biome:start": "biome start", | ||
"biome:stop": "biome stop", | ||
"biome:fix": "biome check --fix .", | ||
"biome:unsafe": "biome check --fix --unsafe .", | ||
"backup": "grunt backup", | ||
"pkg-check": "depcheck", | ||
"pkg-upgrade": "ncu --interactive --format group --packageManager bun", | ||
"versioning": "ungit", | ||
"npm-version:major": "npm version major", | ||
"npm-version:minor": "npm version minor", | ||
"npm-version:patch": "npm version patch", | ||
"npm-login": "npm login", | ||
"npm-publish": "npm publish --access public", | ||
"npm-unpublish": "npm unpublish --force lucy", | ||
"npm-reset:registry": "npm config delete registry", | ||
"npm-check:registry": "npm config get registry", | ||
"npm-proxy-set:registry": "npm set registry http://localhost:4873/", | ||
"npm-proxy:start": "bun run npm-proxy-set:registry && verdaccio", | ||
"npm-proxy:publish": "npm publish --registry http://localhost:4873/", | ||
"npm-proxy:unpublish": "npm unpublish --force --registry http://localhost:4873/ lucy", | ||
"npm-proxy:republish": "bun run npm-proxy:unpublish && bun run npm-proxy:publish", | ||
"nvm": "nvm use", | ||
"db:pull": "drizzle-kit introspect", | ||
"db:push": "drizzle-kit push", | ||
"db:migrate": "drizzle-kit migrate", | ||
"db:generate": "drizzle-kit generate", | ||
"db:drop": "drizzle-kit drop", | ||
"db:up": "drizzle-kit up", | ||
"db:check": "drizzle-kit check", | ||
"db:studio": "drizzle-kit studio" | ||
}, | ||
"dependencies": { | ||
"@google/generative-ai": "^0.21.0", | ||
"better-sqlite3": "^11.5.0", | ||
"commander": "^12.1.0", | ||
"drizzle-orm": "^0.36.3", | ||
"execa": "^9.5.1", | ||
"figlet": "^1.8.0", | ||
"inquirer": "^9.2.15", | ||
"node-emoji": "^2.1.3", | ||
"ora": "^8.1.1" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
"@types/better-sqlite3": "^7.6.12", | ||
"@types/bun": "latest", | ||
"@types/commander": "^2.12.5", | ||
"@types/execa": "^2.0.2", | ||
"@types/figlet": "^1.7.0", | ||
"@types/inquirer": "^9.0.7", | ||
"@types/jest": "^29.5.14", | ||
"@types/node-emoji": "^2.1.0", | ||
"@types/ora": "^3.2.0", | ||
"bun-plugin-dts": "^0.3.0", | ||
"depcheck": "^1.4.7", | ||
"drizzle-kit": "^0.28.1", | ||
"grunt": "^1.6.1", | ||
"grunt-contrib-compress": "^2.0.0", | ||
"grunt-shell": "^4.0.0", | ||
"jest": "^29.7.0", | ||
"load-grunt-tasks": "^5.1.0", | ||
"npm-check-updates": "^17.1.11", | ||
"rimraf": "^6.0.1", | ||
"ts-jest": "^29.2.5", | ||
"ungit": "^1.5.28" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.0.0" | ||
} | ||
} |
Oops, something went wrong.