-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 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
{
"name": "attio-cli",
"version": "0.1.0",
"description": "Fully-typed TypeScript CLI for managing Attio CRM via REST API",
"main": "dist/cli.js",
"bin": {
"attio": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"type-check": "tsc --noEmit",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"attio",
"crm",
"cli",
"api",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/attio-cli.git"
},
"bugs": {
"url": "https://github.com/yourusername/attio-cli/issues"
},
"homepage": "https://github.com/yourusername/attio-cli#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"axios": "^1.6.7",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"csv-stringify": "^6.4.6",
"dotenv": "^16.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}