-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "patto-cli",
"version": "0.0.5",
"type": "module",
"bin": {
"patto": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"url": "git+https://github.com/HormigaDev/patto-cli",
"type": "git"
},
"bugs": {
"url": "https://github.com/HormigaDev/patto-cli/issues"
},
"homepage": "https://github.com/HormigaDev/patto-cli#readme",
"description": "Herramienta de línea de comandos para trabajar con Patto Bot Template",
"scripts": {
"build": "tsc && node ./scripts/copy-templates.js",
"start": "tsx src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"patto-cli",
"patto-bot-template",
"discord",
"discord-bot",
"discord-bot-template"
],
"author": {
"email": "hormigadev7@gmail.com",
"name": "HormigaDev"
},
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"diacritics": "^1.3.0",
"node-fetch": "^3.3.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/commander": "^2.12.0",
"@types/diacritics": "^1.3.3",
"@types/node": "^24.10.1",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^4.0.8",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}