-
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.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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": "@piotar/pkg-sync",
"version": "2.0.2",
"description": "A utility for synchronization multiple packages, without any symlinks and any changes in projects(package.json, etc.).",
"repository": {
"type": "git",
"url": "git+https://github.com/piotar/pkg-sync.git"
},
"keywords": [
"cli",
"copy files",
"copy projects",
"sync packages",
"synchronization packages",
"watch files",
"dev-tool"
],
"author": "Piotr Tarasiuk",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/piotar/pkg-sync/issues"
},
"homepage": "https://github.com/piotar/pkg-sync",
"module": "./dist/cli.js",
"bin": {
"pkg-sync": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsc --watch",
"prebuild": "rimraf dist",
"build": "tsc",
"type-check": "tsc --noEmit",
"prepare": "bunx husky",
"prepublishOnly": "bun run build"
},
"dependencies": {
"chalk": "5.4.1",
"commander": "14.0.3",
"picomatch": "4.0.3",
"prompts": "2.4.2"
},
"devDependencies": {
"@types/node": "25.2.0",
"@types/picomatch": "4.0.2",
"@types/prompts": "2.4.9",
"husky": "9.1.7",
"lint-staged": "16.2.6",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"typescript": "5.9.3"
},
"lint-staged": {
"**/*.{js,ts,json}": "prettier --write"
}
}