-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 938 Bytes
/
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
{
"name": "@nocom_bot/cli",
"version": "0.0.12",
"description": "CLI for NOCOM_BOT core",
"main": "dist/src/import.js",
"bin": {
"nocom-cli": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NOCOM-BOT/cli.git"
},
"keywords": [
"nocom",
"bot",
"cli"
],
"author": "BadAimWeeb",
"license": "SEE LICENCE IN LICENSE",
"bugs": {
"url": "https://github.com/NOCOM-BOT/cli/issues"
},
"homepage": "https://github.com/NOCOM-BOT/cli#readme",
"dependencies": {
"chalk": "^5.0.0",
"commander": "^8.3.0"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^17.0.5",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18"
},
"engineStrict": true,
"type": "module"
}