-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.14 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@tryforge/cli",
"version": "0.0.1",
"description": "A powerful CLI tool for BotForge & ForgeScript to bootstrap projects, scaffold command files, generate templates, and simplify script setups.",
"type": "module",
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"bin": {
"forge": "./bin/index.js"
},
"scripts": {
"audit": "npm audit --audit-level=high --json",
"build": "tsup src/index.ts --format esm --target node18 --out-dir bin --sourcemap --clean",
"build:watch": "tsup src/index.ts --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --runInBand --detectOpenHandles --forceExit",
"lint": "eslint . --ext .ts,.js --cache --cache-location ./node_modules/.cache/eslint/",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "eslint --ext .ts,.js",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit --pretty",
"validate": "npm run typecheck && npm run lint && npm run test:ci"
},
"repository": {
"type": "git",
"url": "https://github.com/tryforge/CLI.git",
"directory": "."
},
"keywords": [
"cli",
"botforge",
"forgescript",
"forge",
"discord",
"typescript",
"scaffolding",
"automation",
"commander",
"chalk",
"ora",
"discord-bot",
"discord-js"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"author": "Sébastien GARCIA <sebastien.garcia@mail.com> (https://github.com/Striatp)",
"contributors": [
{
"name": "Sébastien GARCIA",
"email": "sebastien.garcia@mail.com",
"url": "https://github.com/Striatp"
}
],
"license": "GPL-3.0",
"engines": {
"node": ">=18.0.0"
},
"engine-strict": true,
"private": false,
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/tryforge/CLI/issues"
},
"homepage": "https://github.com/tryforge/CLI#readme",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Striatp"
},
"exports": {
".": "./bin/index.js"
},
"files": [
"bin",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CHANGELOG.md"
],
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9.30.1",
"@jest/globals": "30.0.4",
"@swc/jest": "0.2.38",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-jsdoc": "51.3.4",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"ts-jest": "29.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.36.0"
},
"dependencies": {
"commander": "^14.0.0"
}
}