-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "@gogogolucas/monorepo-cli",
"version": "1.0.0",
"description": "cli tool for monorepo",
"main": "lib/index.js",
"type": "module",
"bin": {
"@gogogolucas/monorepo-cli": "lib/index.js"
},
"scripts": {
"dev": "node --experimental-specifier-resolution=node --loader ts-node/esm src/index.ts",
"start": "node --experimental-specifier-resolution=node lib/index.js",
"build": "tsc",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "yiyu.liao",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.4.1",
"commander": "^11.0.0",
"handlebars": "^4.7.7",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/fs-extra": "^11.0.1",
"@types/git-clone": "^0.2.0",
"@types/inquirer": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"fs-extra": "^11.1.1",
"git-clone": "^0.2.0",
"inquirer": "^9.2.7",
"ora": "^6.3.1",
"prettier": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yiyu-liao/monorepo-cli.git"
},
"bugs": {
"url": "https://github.com/yiyu-liao/monorepo-cli/issues"
},
"homepage": "https://github.com/yiyu-liao/monorepo-cli#readme",
"directories": {
"lib": "lib"
}
}