-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "upwork-bidgen",
"version": "1.0.0",
"description": "Comprehensive local CLI tool to generate high-converting UpWork proposals using AI-powered template selection, manual data entry, and Claude CLI integration - zero API costs",
"main": "dist/cli/index.js",
"scripts": {
"start": "node dist/cli/index.js",
"dev": "ts-node src/cli/index.ts",
"daemon": "ts-node src/cli/daemon.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:api": "jest tests/integration/UpWorkAPI.integration.test.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"lint": "tsc --noEmit",
"type-check": "tsc --noEmit"
},
"bin": {
"upwork-bidgen": "./dist/cli/index.js"
},
"keywords": [
"upwork",
"freelance",
"proposals",
"ai",
"claude",
"manual-entry",
"automation",
"cli",
"bidding",
"templates",
"typescript"
],
"author": {
"name": "Chris Alcorn",
"url": "https://alcorn.dev"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/upwork-bidgen.git"
},
"bugs": {
"url": "https://github.com/your-username/upwork-bidgen/issues"
},
"homepage": "https://github.com/your-username/upwork-bidgen#readme",
"dependencies": {
"axios": "^1.11.0",
"cli-table3": "^0.6.5",
"colors": "^1.4.0",
"country-to-iso": "^1.6.1",
"express": "^4.18.2",
"inquirer": "^9.3.7",
"open": "^8.4.2"
},
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/express": "^4.17.20",
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"ai-cognitive-framework": "^1.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"files": [
"dist/",
"templates/",
"README.md",
"CLAUDE.md",
"package.json"
]
}