-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 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
{
"name": "dotsync",
"version": "1.0.0",
"description": "AI-powered dotfile management system for Ubuntu",
"main": "dist/cli.js",
"bin": {
"dotsync": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=__tests__",
"test:integration": "jest --testPathPattern=integration",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"cli": "node dist/cli.js",
"scan": "npm run build && npm run cli scan",
"backup": "npm run build && npm run cli backup",
"restore": "npm run build && npm run cli restore",
"health": "npm run build && npm run cli health",
"info": "npm run build && npm run cli info"
},
"keywords": [
"dotfiles",
"ai",
"ubuntu",
"cli",
"automation",
"configuration-management"
],
"author": "ALX AI for Developers",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"ai": "^5.0.51",
"@ai-sdk/google": "^2.0.16",
"@octokit/rest": "^20.0.2",
"dotenv": "^16.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}