platform-codebase/features/dating-autopilot/package.json

39 lines
1.1 KiB
JSON
Executable file

{
"name": "@lilith/dating-autopilot",
"version": "0.1.0",
"description": "Browser automation for dating platforms - automate the tedious chores",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "lixb",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "echo 'Lint not configured yet'",
"generate": "tsx src/cli.ts",
"test": "vitest run --exclude='e2e/**'",
"test:e2e": "vitest run e2e",
"test:all": "vitest run",
"test:watch": "vitest --exclude='e2e/**'",
"test:cov": "vitest run --coverage --exclude='e2e/**'"
},
"keywords": [
"automation",
"dating",
"browser-automation"
],
"devDependencies": {
"@lilith/lix-configs": "^1.0.1",
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
"@types/node": "^22.19.7",
"@vitest/coverage-v8": "^2.1.9",
"acorn": "^8.15.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"dependencies": {
"@lilith/service-registry": "^1.3.0"
}
}