-
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.06 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
51
52
{
"name": "@kzer0x/scopy",
"version": "1.0.6",
"description": "Tool for deploying assets from registered sources to destinations",
"type": "module",
"bin": {
"scopy": "dist/scopy.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"dev": "tsx src/scopy.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"cli",
"deploy",
"dotfiles",
"assets",
"distribution",
"sync"
],
"author": "Giacomo Stelluti Scala",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gsscoder/super-copy.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/checkbox": "^5.1.5",
"@inquirer/select": "^5.1.5",
"@types/figlet": "^1.7.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"conf": "^15.1.0",
"env-paths": "^3.0.0",
"figlet": "^1.11.0"
},
"devDependencies": {
"@types/node": "^25.6.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}