-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.96 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@norgate-av/genlinx",
"description": "A CLI utility for NetLinx projects 🚀🚀🚀",
"version": "2.6.1",
"license": "MIT",
"main": "dist/app.js",
"type": "module",
"keywords": [
"netlinx",
"amx",
"genlinx"
],
"files": [
"dist",
"docs",
"scripts"
],
"bin": {
"genlinx": "dist/app.js"
},
"man": [
"docs/genlinx.1"
],
"repository": {
"type": "git",
"url": "https://github.com/Norgate-AV/genlinx.git"
},
"bugs": {
"url": "https://github.com/Norgate-AV/genlinx/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"lint": "tsc",
"pretty:fix": "prettier --write .",
"prebuild": "pnpm clean",
"build": "tsup",
"prestart": "pnpm lint && pnpm build",
"start": "cross-env NODE_ENV=production node dist/app.js",
"dev": "nodemon --exec vite-node src/app.ts",
"doctoc": "doctoc --title '## Contents 📖' README.md",
"semantic-release": "semantic-release",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"contrib:check": "all-contributors check",
"prepare": "husky"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/adm-zip": "^0.5.6",
"@types/config": "^3.3.5",
"@types/figlet": "^1.7.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.1",
"@types/nodemon": "^1.19.6",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"doctoc": "^2.2.1",
"husky": "^9.1.7",
"jsdoc": "^4.0.4",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"terser": "^5.36.0",
"tsup": "^8.3.5",
"type-fest": "^4.27.0",
"typescript": "^5.6.3",
"vite-node": "^2.1.5"
},
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"adm-zip": "^0.5.16",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"config": "^3.3.12",
"console-table-printer": "^2.12.1",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"execa": "^9.5.1",
"figlet": "^1.8.0",
"find-up": "7.0.0",
"listr2": "^8.2.5",
"lodash": "^4.17.21",
"mergician": "^2.0.2",
"node-jq": "^6.0.1",
"string-builder": "^0.1.8",
"which": "^5.0.0"
}
}