-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.66 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "cmand",
"version": "0.8.1-beta",
"author": "CKylinMC",
"description": "A simple command-line tool for Windows managing your small scripts.",
"main": "build/main/index.js",
"bin": {
"cmand": "dist/cmand.exe"
},
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/CKylinMC/cmand",
"license": "MIT",
"keywords": [
"cli",
"windows",
"commands"
],
"scripts": {
"premakepack": "npm run build",
"makepack": "pkg build/main/index.js -t node18-win-x86_64 -o dist/cmand.exe",
"build": "tsc -p tsconfig.json",
"dev": "node build/main/index.js",
"predev": "npm run build"
},
"pkg": {
"scripts": "build/main/**/*.js",
"targets": [
"win"
],
"outputPath": "dist"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@bitauth/libauth": "^1.19.1",
"@pnpm/os.env.path-extender": "^0.2.12",
"@pnpm/os.env.path-extender-windows": "^0.2.5",
"@types/adm-zip": "^0.5.5",
"@types/inquirer": "^9.0.7",
"adm-zip": "^0.5.10",
"chalk": "^4.1.2",
"cli-highlight": "^2.1.11",
"commander": "^11.1.0",
"commonjs-ora": "^1.0.2",
"crypto": "^1.0.1",
"global-agent": "^3.0.0",
"got": "^11.8.6",
"homedir": "^0.6.0",
"i": "^0.3.7",
"inquirer": "^8.2.6",
"inquirer-search-list": "^1.2.6",
"markdown-to-txt": "^2.0.1",
"md5-file": "^5.0.0",
"nestdb": "github:CKylinMC/nestdb",
"ping": "^0.4.4",
"pkg": "^5.8.1",
"semver": "^7.5.4",
"sudo-prompt": "^9.2.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/global-agent": "^2.1.3",
"@types/ping": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.1.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/main/"
}
},
"files": [
"!build/module/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}