-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.38 KB
/
package.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cloudflare-manager",
"version": "1.0.0",
"description": "Gerenciador de fácil uso para cloudflare",
"main": "dist/cli.js",
"module": "dist/cli.js",
"type": "module",
"homepage": "https://github.com/Ashu11-A/cloudflare-manager",
"repository": {
"url": "https://github.com/Ashu11-A/cloudflare-manager"
},
"exports": {
".": {
"import": "./dist/cli.js",
"types": "./dist/cli.d.ts"
}
},
"imports": {
"@/*": [
"src/*"
]
},
"engines": {
"node": ">=20"
},
"bin": {
"cloudflare-manager": "dist/cli.js",
"cfm": "dist/cli.js",
"cm": "dist/cli.js"
},
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
"build:tsup": "rimraf dist && npx tsx build/build.ts && tsc-alias -p ./tsconfig.build.json",
"translate": " npx tsx build/translate.ts",
"dev": "tsx src/cli.ts",
"start": "node --env-file=.env dist/app.js",
"test": "isTest=true node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint -c eslint.config.js",
"check": "npx npm-check-updates"
},
"keywords": [
"cloudflare",
"manager"
],
"author": "Ashu11-A",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.6.0",
"@jest/globals": "^29.7.0",
"@types/copy-paste": "^1.1.33",
"@types/crypto-js": "^4.2.2",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/node-forge": "^1.3.11",
"babel-plugin-module-resolver": "^5.0.2",
"clipboard-event": "^1.6.0",
"copy-paste": "^1.5.3",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.5.0"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"argon2": "^0.40.3",
"chalk": "^5.3.0",
"check-password-strength": "^2.0.10",
"cloudflare": "^3.5.0",
"country-code-to-flag-emoji": "^1.3.3",
"crypto-js": "^4.2.0",
"enmap": "^6.0.2",
"enquirer": "^2.4.1",
"glob": "^11.0.0",
"inquirer-autocomplete-standalone": "^0.8.1",
"node-forge": "^1.3.1",
"ora": "^8.1.0"
}
}