-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.43 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
{
"name": "monilla",
"version": "0.3.0",
"description": "A CLI to manage monorepos with predictability and stability.",
"homepage": "https://github.com/ctrlplusb/monilla",
"engines": {
"node": ">=18"
},
"type": "module",
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/ctrlplusb/monilla.git"
},
"files": [
"dist"
],
"bin": {
"monilla": "dist/cli.js"
},
"scripts": {
"build": "tsup-node src/cli.ts --sourcemap --format esm --target node16",
"lint": "eslint . --ext .js,.ts,.json",
"prepare": "npm run build",
"test": "vitest",
"typecheck": "tsc"
},
"keywords": [
"monorepo",
"node",
"cli",
"npm",
"yarn"
],
"author": "Sean Matheson",
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.3",
"find-up": "^6.3.0",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"npm-check-updates": "^14.1.1",
"npm-packlist": "^5.1.0",
"p-series": "^3.0.0",
"read-pkg": "^7.1.0",
"semver": "^7.3.7",
"symlink-dir": "^5.0.1",
"ts-custom-error": "^3.2.0",
"type-fest": "^2.14.0",
"write-pkg": "^5.1.0",
"yargs": "^17.5.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.35",
"@types/npm-packlist": "^3.0.0",
"@types/semver": "^7.3.10",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.7.1",
"tempy": "^3.0.0",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"simple-import-sort",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"env": {
"es2021": true,
"node": true
},
"settings": {
"import/resolver": {
"typescript": {}
}
},
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
}
},
"eslintIgnore": [
"dist"
],
"prettier": {
"trailingComma": "all"
}
}