-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "@dealmachine/cli",
"version": "0.3.0",
"description": "DealMachine CLI for property intelligence, people lookup, and enrichment through the public API",
"author": "DealMachine",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/DealMachine/dealmachine-cli.git"
},
"homepage": "https://github.com/DealMachine/dealmachine-cli#readme",
"bugs": {
"url": "https://github.com/DealMachine/dealmachine-cli/issues"
},
"bin": {
"dm": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node scripts/copy-agent-assets.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "npm run validate:plugin && vitest run",
"validate:plugin": "node scripts/validate-agent-plugin.mjs",
"eval:cold-start:local": "npm run build && node scripts/eval-cold-start.mjs local",
"eval:cold-start:published": "node scripts/eval-cold-start.mjs published",
"eval:cold-start:deployed": "node scripts/eval-cold-start.mjs deployed",
"eval:cold-start:all": "npm run build && node scripts/eval-cold-start.mjs all",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"open": "^10.1.0",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"dealmachine",
"real-estate",
"property-data",
"property-intelligence",
"lead-generation",
"api",
"cli",
"enrichment"
]
}