-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 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
{
"name": "clattio",
"version": "0.1.0",
"description": "Manage Attio from the terminal.",
"homepage": "https://github.com/mavam/clattio",
"repository": {
"type": "git",
"url": "git+https://github.com/mavam/clattio.git"
},
"bugs": {
"url": "https://github.com/mavam/clattio/issues"
},
"keywords": [
"attio",
"cli",
"crm",
"oauth"
],
"type": "module",
"bin": {
"attio": "./dist/attio.js"
},
"files": [
"dist"
],
"packageManager": "bun@1.3.9",
"engines": {
"bun": ">=1.3.9",
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"generate": "bun scripts/generate.ts",
"build": "bun run generate && bunx tsup src/bin/attio.ts --format esm --out-dir dist --clean --dts",
"prepack": "bun run build",
"test": "bun run generate && bunx vitest run"
},
"dependencies": {
"commander": "14.0.3"
},
"devDependencies": {
"@hey-api/openapi-ts": "0.94.0",
"@types/node": "24.3.0",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vitest": "3.2.4"
}
}