-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "@madkoo/dfiles",
"version": "1.1.2",
"description": "Manage specific files/folders from multiple git repositories",
"bin": {
"dfiles": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --fix src/ tests/",
"format": "biome format --write src/ tests/",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"dependencies": {
"commander": "^14.0.3",
"fast-glob": "^3.3.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/node": "^25.5.0",
"ts-node": "^10.9.0",
"typescript": "^6.0.2",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=16.7.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/madkoo/distributed-files.git"
},
"homepage": "https://github.com/madkoo/distributed-files#readme",
"bugs": {
"url": "https://github.com/madkoo/distributed-files/issues"
},
"keywords": [
"dotfiles",
"git",
"sync",
"files",
"cli"
]
}