-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.67 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
{
"name": "lopm",
"version": "1.1.3",
"type": "module",
"description": "CLI to Support Monorepo for local packages",
"repository": {
"type": "git",
"url": "https://github.com/gronxb/lopm.git"
},
"files": [
"bin",
"package.json"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"build": "node esbuild.config.js",
"test": "jest",
"test:type": "tsc --noEmit",
"ci:publish": "turbo publish && changeset publish"
},
"keywords": [
"lopm",
"yarn",
"pnpm",
"yarn-workspace",
"pnpm-workspace",
"workspace",
"monorepo",
"local-package"
],
"author": "gronxb <[email protected]>",
"license": "MIT",
"bin": {
"lopm": "./bin/index.cjs"
},
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"lodash.debounce": "^4.0.8",
"picocolors": "^1.0.0",
"source-map-support": "^0.5.21",
"workspace-tools": "^0.29.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/lodash-es": "^4.17.6",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"esbuild": "^0.17.5",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.4.2",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"turbo": "^1.8.5",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}