-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 935 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
{
"name": "@symbux/cli",
"version": "0.1.0",
"description": "The command-line utility for all @symbux scoped projects.",
"main": "lib/index.js",
"repository": "[email protected]:Symbux/CLI.git",
"author": "Symbux Dev <[email protected]> (https://symbux.dev)",
"license": "Apache-2.0",
"private": false,
"bin": {
"turbo-cli": "lib/index.js"
},
"scripts": {
"watch": "tsc --watch",
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts",
"prepublishOnly": "yarn lint && yarn build",
"changelog": "auto-changelog --template keepachangelog --commit-limit false --hide-credit"
},
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/node": "^17.0.44",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"colors": "^1.4.0"
}
}